summaryrefslogtreecommitdiffstats
path: root/t/object.t
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2011-09-04 12:03:26 -0500
committerJesse Luehrs <doy@tozt.net>2011-09-04 12:03:26 -0500
commita2a44a1e4da072193f3d2a165bc62f9907d5a964 (patch)
treed9061dcbaedda981cf642590d6c542aca5a739bd /t/object.t
parent05596e277d97bad8338f83b4da0f90e28521b3a6 (diff)
downloadcarp-always-color-a2a44a1e4da072193f3d2a165bc62f9907d5a964.tar.gz
carp-always-color-a2a44a1e4da072193f3d2a165bc62f9907d5a964.zip
remove test numbers
Diffstat (limited to 't/object.t')
-rw-r--r--t/object.t10
1 files changed, 10 insertions, 0 deletions
diff --git a/t/object.t b/t/object.t
new file mode 100644
index 0000000..3a88dd3
--- /dev/null
+++ b/t/object.t
@@ -0,0 +1,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");