Mouse::Util::does_role() respects $thing->does() method
[gitmo/Mouse.git] / t / 010_basics / 003_super_and_override.t
index d68fc0d..600d5db 100644 (file)
@@ -1,15 +1,13 @@
 #!/usr/bin/perl
-# This is automatically generated by author/import-moose-test.pl.
-# DO NOT EDIT THIS FILE. ANY CHANGES WILL BE LOST!!!
-use t::lib::MooseCompat;
 
 use strict;
 use warnings;
 
-use Test::More;
+use Test::More tests => 16;
 use Test::Exception;
 
 
+
 {
     package Foo;
     use Mouse;
@@ -81,4 +79,3 @@ is($foo->baz(), 'Foo::baz', '... got the right value from &baz');
 
 }
 
-done_testing;