aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Changes3
-rw-r--r--lib/MooseX/AlwaysCoerce.pm4
-rw-r--r--t/04-parameterized-roles.t6
3 files changed, 10 insertions, 3 deletions
diff --git a/Changes b/Changes
index 656b630..90d4d03 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,8 @@
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)
diff --git a/lib/MooseX/AlwaysCoerce.pm b/lib/MooseX/AlwaysCoerce.pm
index 3b1893c..51e2f2e 100644
--- a/lib/MooseX/AlwaysCoerce.pm
+++ b/lib/MooseX/AlwaysCoerce.pm
@@ -18,11 +18,11 @@ MooseX::AlwaysCoerce - Automatically enable coercions for Moose attributes
=head1 VERSION
-Version 0.07
+Version 0.08
=cut
-our $VERSION = '0.07';
+our $VERSION = '0.08';
=head1 SYNOPSIS
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';