Skip to content

Commit

Permalink
Make a commented out test into a TODO test.
Browse files Browse the repository at this point in the history
For #114
  • Loading branch information
schwern committed Mar 20, 2013
1 parent 19b0216 commit 0056a95
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions t/everything_is_an_object.t
Expand Up @@ -15,7 +15,9 @@ use Test::More;
isa_ok "Foo", "UNIVERSAL";

# autobox changed the way isa() works and now this fails
# don't have time to deal with it right now.
#ok 42->isa("UNIVERSAL"), "autoboxed things are objects";
TODO: {
local $TODO = '42->isa("UNIVERSAL") and autobox conflict, see [github #114]';
ok 42->isa("UNIVERSAL"), "autoboxed things are objects";
}

done_testing();

0 comments on commit 0056a95

Please sign in to comment.