Mouse::Util::does_role() respects $thing->does() method
[gitmo/Mouse.git] / t / 030_roles / 042_compose_overloading.t
index 2a685a0..2473a24 100644 (file)
@@ -1,9 +1,6 @@
 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::More;
+use Test::More tests => 1;
 
 {
     package Foo;
@@ -25,9 +22,4 @@ use Test::More;
 
 my $bar = Bar->new;
 
-TODO: {
-    local $TODO = "the special () method isn't properly composed into the class";
-    is("$bar", 42, 'overloading can be composed');
-}
-
-done_testing;
+is("$bar", 42, 'overloading can be composed');