Mouse::Util::does_role() respects $thing->does() method
[gitmo/Mouse.git] / t / 100_bugs / 025_universal_methods_wrappable.t
index c995172..8e24969 100644 (file)
@@ -1,8 +1,11 @@
 use strict;
+# 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 warnings;
 
 use Test::Exception;
-use Test::More tests => 2;
+use Test::More;
 
 {
 
@@ -20,10 +23,10 @@ use Test::More tests => 2;
 
     use Test::More; # for $TODO
 
-    local $TODO = 'UNIVERSAL methods should be wrappable';
-
     ::lives_ok { with 'FakeBar' } 'applied role';
 
     my $foo = Foo->new;
     ::isa_ok $foo, 'Bar';
 }
+
+done_testing;