aboutsummaryrefslogtreecommitdiffstats
path: root/t/04-parameterized-roles.t
diff options
context:
space:
mode:
Diffstat (limited to 't/04-parameterized-roles.t')
-rw-r--r--t/04-parameterized-roles.t6
1 files changed, 5 insertions, 1 deletions
diff --git a/t/04-parameterized-roles.t b/t/04-parameterized-roles.t
index 3992dca..ab8b541 100644
--- a/t/04-parameterized-roles.t
+++ b/t/04-parameterized-roles.t
@@ -51,7 +51,11 @@ eval 'use Test::NoWarnings';
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';