summaryrefslogtreecommitdiffstats
path: root/t
diff options
context:
space:
mode:
authordoy <doy@tozt.net>2009-04-12 15:03:48 -0500
committerdoy <doy@tozt.net>2009-04-12 15:03:48 -0500
commit9ca4961feb1ee860cb61caaf422313223fa5f324 (patch)
tree6d7143374d26445cbf682f74f644cfb732a476c7 /t
parentb6f7a1d3bdcba7d5bee6f6fd52c4c36b5e1b1b47 (diff)
downloadmoosex-nonmoose-9ca4961feb1ee860cb61caaf422313223fa5f324.tar.gz
moosex-nonmoose-9ca4961feb1ee860cb61caaf422313223fa5f324.zip
these should be inlined by moose
Diffstat (limited to 't')
-rw-r--r--t/005-moose.t8
1 files changed, 4 insertions, 4 deletions
diff --git a/t/005-moose.t b/t/005-moose.t
index a27e97d..75f9f78 100644
--- a/t/005-moose.t
+++ b/t/005-moose.t
@@ -28,8 +28,8 @@ $_->meta->make_immutable for qw(Foo Foo::Sub);
$foo_sub = Foo::Sub->new;
isa_ok $foo_sub, 'Foo';
is $foo_sub->foo, 'FOO', 'inheritance works (immutable)';
-ok(!Foo::Sub->meta->has_method('new'),
- 'Foo::Sub doesn\'t have its own new method (immutable)');
+ok(Foo::Sub->meta->has_method('new'),
+ 'Foo::Sub has its own new method (immutable)');
package Foo::OtherSub;
use Moose;
@@ -47,5 +47,5 @@ Foo::OtherSub->meta->make_immutable;
$foo_othersub = Foo::OtherSub->new;
isa_ok $foo_othersub, 'Foo';
is $foo_othersub->foo, 'FOO', 'inheritance works (all immutable)';
-ok(!Foo::OtherSub->meta->has_method('new'),
- 'Foo::OtherSub doesn\'t have its own new method (all immutable)');
+ok(Foo::OtherSub->meta->has_method('new'),
+ 'Foo::OtherSub has its own new method (all immutable)');