DEATH TO ALL zionist ELLIPSES
[gitmo/Moose.git] / t / 010_basics / 004_inner_and_augment.t
index 4957d26..b994f6f 100644 (file)
@@ -44,24 +44,24 @@ isa_ok($baz, 'Baz');
 isa_ok($baz, 'Bar');
 isa_ok($baz, 'Foo');
 
-is($baz->foo(), 'Foo::foo(Bar::foo(Baz::foo))', '... got the right value from &foo');
-is($baz->bar(), 'Foo::bar(Bar::bar)', '... got the right value from &bar');
-is($baz->baz(), 'Foo::baz(Baz::baz)', '... got the right value from &baz');
+is($baz->foo(), 'Foo::foo(Bar::foo(Baz::foo))', 'got the right value from &foo');
+is($baz->bar(), 'Foo::bar(Bar::bar)', 'got the right value from &bar');
+is($baz->baz(), 'Foo::baz(Baz::baz)', 'got the right value from &baz');
 
 my $bar = Bar->new();
 isa_ok($bar, 'Bar');
 isa_ok($bar, 'Foo');
 
-is($bar->foo(), 'Foo::foo(Bar::foo())', '... got the right value from &foo');
-is($bar->bar(), 'Foo::bar(Bar::bar)', '... got the right value from &bar');
-is($bar->baz(), 'Foo::baz()', '... got the right value from &baz');
+is($bar->foo(), 'Foo::foo(Bar::foo())', 'got the right value from &foo');
+is($bar->bar(), 'Foo::bar(Bar::bar)', 'got the right value from &bar');
+is($bar->baz(), 'Foo::baz()', 'got the right value from &baz');
 
 my $foo = Foo->new();
 isa_ok($foo, 'Foo');
 
-is($foo->foo(), 'Foo::foo()', '... got the right value from &foo');
-is($foo->bar(), 'Foo::bar()', '... got the right value from &bar');
-is($foo->baz(), 'Foo::baz()', '... got the right value from &baz');
+is($foo->foo(), 'Foo::foo()', 'got the right value from &foo');
+is($foo->bar(), 'Foo::bar()', 'got the right value from &bar');
+is($foo->baz(), 'Foo::baz()', 'got the right value from &baz');
 
 # some error cases
 
@@ -80,7 +80,7 @@ is($foo->baz(), 'Foo::baz()', '... got the right value from &baz');
 
     ::dies_ok {
         augment 'bling' => sub {};
-    } '... cannot augment a method which has a local equivalent';
+    } 'cannot augment a method which has a local equivalent';
 
 }