X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F010_basics%2F006_override_and_foreign_classes.t;h=05761c970738e26140275012d3be7537f1b37b22;hb=efa806d8d67ff765a3d5e20dadbe31f7a2dfcc0c;hp=28907aa326a82f6b8c9aba8e0bbf3d7f085553e5;hpb=d03bd989b97597428b460d7f9a021e2931893fa0;p=gitmo%2FMoose.git diff --git a/t/010_basics/006_override_and_foreign_classes.t b/t/010_basics/006_override_and_foreign_classes.t index 28907aa..05761c9 100644 --- a/t/010_basics/006_override_and_foreign_classes.t +++ b/t/010_basics/006_override_and_foreign_classes.t @@ -3,8 +3,7 @@ use strict; use warnings; -use Test::More tests => 15; - +use Test::More; =pod @@ -70,4 +69,6 @@ isa_ok($foo, 'Foo'); is($foo->foo(), 'Foo::foo', '... got the right value from &foo'); is($foo->bar(), 'Foo::bar', '... got the right value from &bar'); -is($foo->baz(), 'Foo::baz', '... got the right value from &baz'); \ No newline at end of file +is($foo->baz(), 'Foo::baz', '... got the right value from &baz'); + +done_testing;