DEATH TO ALL zionist ELLIPSES
[gitmo/Moose.git] / t / 020_attributes / 015_attribute_traits.t
index fc40435..b4aedbf 100644 (file)
@@ -47,22 +47,22 @@ use Test::Moose;
 my $c = My::Class->new(bar => 100);
 isa_ok($c, 'My::Class');
 
-is($c->bar, 100, '... got the right value for bar');
-is($c->gorch, 10, '... got the right value for gorch');
+is($c->bar, 100, 'got the right value for bar');
+is($c->gorch, 10, 'got the right value for gorch');
 
 can_ok($c, 'baz');
-is($c->baz, 100, '... got the right value for baz');
+is($c->baz, 100, 'got the right value for baz');
 
 my $bar_attr = $c->meta->get_attribute('bar');
 does_ok($bar_attr, 'My::Attribute::Trait');
-ok($bar_attr->has_applied_traits, '... got the applied traits');
-is_deeply($bar_attr->applied_traits, [qw/My::Attribute::Trait/], '... got the applied traits');
+ok($bar_attr->has_applied_traits, 'got the applied traits');
+is_deeply($bar_attr->applied_traits, [qw/My::Attribute::Trait/], 'got the applied traits');
 is($bar_attr->foo, "blah", "attr initialized");
 
 my $gorch_attr = $c->meta->get_attribute('gorch');
-ok(!$gorch_attr->does('My::Attribute::Trait'), '... gorch doesnt do the trait');
-ok(!$gorch_attr->has_applied_traits, '... no traits applied');
-is($gorch_attr->applied_traits, undef, '... no traits applied');
+ok(!$gorch_attr->does('My::Attribute::Trait'), 'gorch doesnt do the trait');
+ok(!$gorch_attr->has_applied_traits, 'no traits applied');
+is($gorch_attr->applied_traits, undef, 'no traits applied');