DEATH TO ALL zionist ELLIPSES
[gitmo/Moose.git] / t / 030_roles / 004_role_composition_errors.t
index ce8918f..76d6ef1 100644 (file)
@@ -19,7 +19,7 @@ use Test::Exception;
 is_deeply(
     [ sort Foo::Role->meta->get_required_method_list ],
     ['foo'],
-    '... the Foo::Role has a required method (foo)'
+    'the Foo::Role has a required method (foo)'
 );
 
 # classes which does not implement required method
@@ -29,7 +29,7 @@ is_deeply(
     use Moose;
 
     ::dies_ok { with('Foo::Role') }
-        '... no foo method implemented by Foo::Class';
+        'no foo method implemented by Foo::Class';
 }
 
 # class which does implement required method
@@ -39,9 +39,9 @@ is_deeply(
     use Moose;
 
     ::dies_ok { with('Foo::Class') }
-        '... cannot consume a class, it must be a role';
+        'cannot consume a class, it must be a role';
     ::lives_ok { with('Foo::Role') }
-        '... has a foo method implemented by Bar::Class';
+        'has a foo method implemented by Bar::Class';
 
     sub foo {'Bar::Class::foo'}
 }
@@ -53,7 +53,7 @@ is_deeply(
     use Moose::Role;
 
     ::lives_ok { with('Foo::Role') }
-        '... has a foo method implemented by Bar::Role';
+        'has a foo method implemented by Bar::Role';
 
     sub foo {'Bar::Role::foo'}
 }
@@ -61,7 +61,7 @@ is_deeply(
 is_deeply(
     [ sort Bar::Role->meta->get_required_method_list ],
     [],
-    '... the Bar::Role has not inherited the required method from Foo::Role'
+    'the Bar::Role has not inherited the required method from Foo::Role'
 );
 
 # role which does not implement required method
@@ -71,13 +71,13 @@ is_deeply(
     use Moose::Role;
 
     ::lives_ok { with('Foo::Role') }
-        '... no foo method implemented by Baz::Role';
+        'no foo method implemented by Baz::Role';
 }
 
 is_deeply(
     [ sort Baz::Role->meta->get_required_method_list ],
     ['foo'],
-    '... the Baz::Role has inherited the required method from Foo::Role'
+    'the Baz::Role has inherited the required method from Foo::Role'
 );
 
 # classes which does not implement required method
@@ -87,7 +87,7 @@ is_deeply(
     use Moose;
 
     ::dies_ok { with('Baz::Role') }
-        '... no foo method implemented by Baz::Class2';
+        'no foo method implemented by Baz::Class2';
 }
 
 # class which does implement required method
@@ -97,7 +97,7 @@ is_deeply(
     use Moose;
 
     ::lives_ok { with('Baz::Role') }
-        '... has a foo method implemented by Baz::Class2';
+        'has a foo method implemented by Baz::Class2';
 
     sub foo {'Baz::Class2::foo'}
 }