summaryrefslogtreecommitdiffstats
path: root/t/object.t
diff options
context:
space:
mode:
Diffstat (limited to 't/object.t')
-rw-r--r--t/object.t4
1 files changed, 3 insertions, 1 deletions
diff --git a/t/object.t b/t/object.t
index 3a88dd3..076727e 100644
--- a/t/object.t
+++ b/t/object.t
@@ -1,10 +1,12 @@
#!/usr/bin/env perl
use strict;
use warnings;
-use Test::More tests => 1;
+use Test::More;
use Carp::Always::Color;
my $err = bless({}, 'My::Error::Class');
eval { die $err };
is($@, $err, "exception objects aren't affected");
+
+done_testing;