DEATH TO ALL zionist ELLIPSES
[gitmo/Moose.git] / t / 040_type_constraints / 002_util_type_constraints_export.t
index 7ef7ad1..1e6c0f7 100644 (file)
@@ -14,15 +14,15 @@ use Test::Exception;
     eval {
         type MyRef => where { ref($_) };
     };
-    ::ok( !$@, '... successfully exported &type to Foo package' );
+    ::ok( !$@, 'successfully exported &type to Foo package' );
 
     eval {
         subtype MyArrayRef => as MyRef => where { ref($_) eq 'ARRAY' };
     };
-    ::ok( !$@, '... successfully exported &subtype to Foo package' );
+    ::ok( !$@, 'successfully exported &subtype to Foo package' );
 
     Moose::Util::TypeConstraints->export_type_constraints_as_functions();
 
-    ::ok( MyRef( {} ), '... Ref worked correctly' );
-    ::ok( MyArrayRef( [] ), '... ArrayRef worked correctly' );
+    ::ok( MyRef( {} ), 'Ref worked correctly' );
+    ::ok( MyArrayRef( [] ), 'ArrayRef worked correctly' );
 }