projects
/
gitmo/Moose.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
220ea84
)
Add parens for isa_ok
Dave Rolsky [Sat, 17 Sep 2011 02:07:09 +0000 (21:07 -0500)]
t/basics/universal_methods_wrappable.t
patch
|
blob
|
blame
|
history
diff --git
a/t/basics/universal_methods_wrappable.t
b/t/basics/universal_methods_wrappable.t
index
1d4a1cf
..
388b28c
100644
(file)
--- a/
t/basics/universal_methods_wrappable.t
+++ b/
t/basics/universal_methods_wrappable.t
@@
-20,12
+20,10
@@
use Test::More;
use Test::More; # for $TODO
- local $TODO = 'UNIVERSAL methods should be wrappable';
-
::is( ::exception { with 'FakeBar' }, undef, 'applied role' );
my $foo = Foo->new;
- ::isa_ok $foo, 'Bar';
+ ::isa_ok( $foo, 'Bar' );
}
done_testing;