traitS not trait
Hans Dieter Pearcey [Thu, 25 Jun 2009 23:08:02 +0000 (19:08 -0400)]
t/070_attribute_helpers/100_collection_with_roles.t

index 4f121c1..93b05cf 100644 (file)
@@ -51,7 +51,7 @@ use Moose::AttributeHelpers;
 with 'Subject';
 
 has count => (
-    trait     => [ 'Counter' ],
+    traits    => [ 'Counter' ],
     is        => 'ro',
     isa       => 'Int',
     default   => 0,
@@ -61,7 +61,7 @@ has count => (
     },
 );
 
-after 'inc_counter', 'dec_counter' => sub {
+after qw(inc_counter dec_counter) => sub {
     my ($self) = @_;
     $self->notify();
 };