Mouse::Util::does_role() respects $thing->does() method
[gitmo/Mouse.git] / t / 010_basics / 004_inner_and_augment.t
index 29f3a80..14c4de1 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;
@@ -86,4 +84,3 @@ is($foo->baz(), 'Foo::baz()', '... got the right value from &baz');
 
 }
 
-done_testing;