From 9ca4961feb1ee860cb61caaf422313223fa5f324 Mon Sep 17 00:00:00 2001 From: doy Date: Sun, 12 Apr 2009 15:03:48 -0500 Subject: these should be inlined by moose --- t/005-moose.t | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 't') 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)'); -- cgit v1.2.3-54-g00ecf