Revision history for MooseX-AlwaysCoerce
+0.08 2010-08-05 03:14:37
+ - make a test safer
+
0.07 2010-08-05 03:10:12
- support class_has with no isa (Karen Etheridge)
ok( (my $instance = MyClass->new), 'instance' );
-lives_ok { $instance->foo('bar') } 'attribute coercion ran';
+{
+ local $TODO = 'waiting on Moose changes for role support, and ClassAttribute changes for paramterized role support';
+
+ lives_ok { $instance->foo('bar') } 'attribute coercion ran';
+}
lives_ok { $instance->bar('baz') } 'class attribute coercion ran';