DEATH TO ALL zionist ELLIPSES
[gitmo/Moose.git] / t / 010_basics / 006_override_and_foreign_classes.t
index 28907aa..24ff44a 100644 (file)
@@ -53,21 +53,21 @@ isa_ok($baz, 'Baz');
 isa_ok($baz, 'Bar');
 isa_ok($baz, 'Foo');
 
-is($baz->foo(), 'Foo::foo', '... got the right value from &foo');
-is($baz->bar(), 'Baz::bar -> Bar::bar -> Foo::bar', '... got the right value from &bar');
-is($baz->baz(), 'Baz::baz -> Foo::baz', '... got the right value from &baz');
+is($baz->foo(), 'Foo::foo', 'got the right value from &foo');
+is($baz->bar(), 'Baz::bar -> Bar::bar -> Foo::bar', 'got the right value from &bar');
+is($baz->baz(), 'Baz::baz -> Foo::baz', 'got the right value from &baz');
 
 my $bar = Bar->new();
 isa_ok($bar, 'Bar');
 isa_ok($bar, 'Foo');
 
-is($bar->foo(), 'Foo::foo', '... got the right value from &foo');
-is($bar->bar(), 'Bar::bar -> Foo::bar', '... got the right value from &bar');
-is($bar->baz(), 'Foo::baz', '... got the right value from &baz');
+is($bar->foo(), 'Foo::foo', 'got the right value from &foo');
+is($bar->bar(), 'Bar::bar -> Foo::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');
\ No newline at end of file
+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');
\ No newline at end of file