summaryrefslogtreecommitdiffstats
path: root/t/33-constructor-name.t
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2011-02-21 01:53:08 -0600
committerJesse Luehrs <doy@tozt.net>2011-02-21 01:53:08 -0600
commit06f919c57dfc917e50e6858100cfbe3a1b57a1be (patch)
tree8d269551288407c1cc78c9d7ad7466cf7e9a8bcb /t/33-constructor-name.t
parentd1149a69c6121025816d388fadc3861e7407c594 (diff)
downloadbread-board-declare-06f919c57dfc917e50e6858100cfbe3a1b57a1be.tar.gz
bread-board-declare-06f919c57dfc917e50e6858100cfbe3a1b57a1be.zip
make sure i'm testing immutability too
Diffstat (limited to 't/33-constructor-name.t')
-rw-r--r--t/33-constructor-name.t5
1 files changed, 3 insertions, 2 deletions
diff --git a/t/33-constructor-name.t b/t/33-constructor-name.t
index 28647ee..ef46338 100644
--- a/t/33-constructor-name.t
+++ b/t/33-constructor-name.t
@@ -2,6 +2,7 @@
use strict;
use warnings;
use Test::More;
+use Test::Moose;
{
package Bar;
@@ -22,9 +23,9 @@ use Test::More;
);
}
-{
+with_immutable {
my $foo = Foo->new;
isa_ok($foo->bar, 'Bar');
-}
+} 'Foo';
done_testing;