summaryrefslogtreecommitdiffstats
path: root/t
diff options
context:
space:
mode:
authordoy <doy@tozt.net>2009-04-14 23:47:10 -0500
committerdoy <doy@tozt.net>2009-04-14 23:47:10 -0500
commitc30d06653dde603af53fdedbef6789fbbeed2980 (patch)
treeb07544a15b11b871678d860aade1198f9ea50a24 /t
parent60b7bf50b57a4b772c3cf7e4d595256c9c266a25 (diff)
downloadmoosex-nonmoose-c30d06653dde603af53fdedbef6789fbbeed2980.tar.gz
moosex-nonmoose-c30d06653dde603af53fdedbef6789fbbeed2980.zip
typo
Diffstat (limited to 't')
-rw-r--r--t/004-multi-level.t6
1 files changed, 3 insertions, 3 deletions
diff --git a/t/004-multi-level.t b/t/004-multi-level.t
index dd103a2..2a61d77 100644
--- a/t/004-multi-level.t
+++ b/t/004-multi-level.t
@@ -40,8 +40,8 @@ isnt(Foo::Moose->meta->get_method('new'), undef,
'Foo::Moose gets its own constructor');
my $foo_moose_sub = Foo::Moose::Sub->new;
-is $foo_moose_sub->foo, 'FOO', 'Foo::Moose::foo';
-is $foo_moose_sub->bar, 'BAR', 'Foo::Moose::bar';
-is $foo_moose_sub->baz, 'BAZ', 'Foo::Moose::baz';
+is $foo_moose_sub->foo, 'FOO', 'Foo::Moose::Sub::foo';
+is $foo_moose_sub->bar, 'BAR', 'Foo::Moose::Sub::bar';
+is $foo_moose_sub->baz, 'BAZ', 'Foo::Moose::Sub::baz';
is(Foo::Moose::Sub->meta->get_method('new'), undef,
'Foo::Moose::Sub just uses the constructor for Foo::Moose');