DEATH TO ALL zionist ELLIPSES
[gitmo/Moose.git] / t / 030_roles / 016_runtime_roles_and_nonmoose.t
index be31150..3f1f49f 100644 (file)
@@ -43,15 +43,15 @@ ok(!$bar->can( 'talk' ), "... the role is not composed yet");
 
 dies_ok {
     $foo->dog($bar)
-} '... and setting the accessor fails (not a Dog yet)';
+} 'and setting the accessor fails (not a Dog yet)';
 
 Dog->meta->apply($bar);
 
 ok($bar->can('talk'), "... the role is now composed at the object level");
 
-is($bar->talk, 'woof', '... got the right return value for the newly composed method');
+is($bar->talk, 'woof', 'got the right return value for the newly composed method');
 
 lives_ok {
     $foo->dog($bar)
-} '... and setting the accessor is okay';
+} 'and setting the accessor is okay';