Make $role->get_method_list() include meta() (Moose 0.90 feature)
[gitmo/Mouse.git] / t / 800_shikabased / 010-isa-or.t
index 0b42f5c..ef86743 100644 (file)
@@ -32,7 +32,7 @@ my $f = Foo->new;
 eval {
     $f->bar([]);
 };
-ok !$@;
+ok !$@, $@;
 is $f->bar, 'Baz', 'bar is baz (coerce from ArrayRef)';
 
 eval {