summaryrefslogtreecommitdiffstats
path: root/t/005-object.t
blob: 3a88dd32c88f3cb9e4767ed4fe3606929d06cd0e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env perl
use strict;
use warnings;
use Test::More tests => 1;

use Carp::Always::Color;

my $err = bless({}, 'My::Error::Class');
eval { die $err };
is($@, $err, "exception objects aren't affected");