DEATH TO ALL zionist ELLIPSES
[gitmo/Moose.git] / t / 040_type_constraints / 001_util_type_constraints.t
index cf4e7e5..284e625 100644 (file)
@@ -27,96 +27,96 @@ subtype NaturalLessThanTen
 
 Moose::Util::TypeConstraints->export_type_constraints_as_functions();
 
-ok(Number(5), '... this is a Num');
-ok(!defined(Number('Foo')), '... this is not a Num');
+ok(Number(5), 'this is a Num');
+ok(!defined(Number('Foo')), 'this is not a Num');
 {
     my $number_tc = Moose::Util::TypeConstraints::find_type_constraint('Number');
-    is("$number_tc", 'Number', '... type constraint stringifies to name');
+    is("$number_tc", 'Number', 'type constraint stringifies to name');
 }
 
-ok(String('Foo'), '... this is a Str');
-ok(!defined(String(5)), '... this is not a Str');
+ok(String('Foo'), 'this is a Str');
+ok(!defined(String(5)), 'this is not a Str');
 
-ok(Natural(5), '... this is a Natural');
-is(Natural(-5), undef, '... this is not a Natural');
-is(Natural('Foo'), undef, '... this is not a Natural');
+ok(Natural(5), 'this is a Natural');
+is(Natural(-5), undef, 'this is not a Natural');
+is(Natural('Foo'), undef, 'this is not a Natural');
 
-ok(NaturalLessThanTen(5), '... this is a NaturalLessThanTen');
-is(NaturalLessThanTen(12), undef, '... this is not a NaturalLessThanTen');
-is(NaturalLessThanTen(-5), undef, '... this is not a NaturalLessThanTen');
-is(NaturalLessThanTen('Foo'), undef, '... this is not a NaturalLessThanTen');
+ok(NaturalLessThanTen(5), 'this is a NaturalLessThanTen');
+is(NaturalLessThanTen(12), undef, 'this is not a NaturalLessThanTen');
+is(NaturalLessThanTen(-5), undef, 'this is not a NaturalLessThanTen');
+is(NaturalLessThanTen('Foo'), undef, 'this is not a NaturalLessThanTen');
 
 # anon sub-typing
 
 my $negative = subtype Number => where  { $_ < 0 };
-ok(defined $negative, '... got a value back from negative');
+ok(defined $negative, 'got a value back from negative');
 isa_ok($negative, 'Moose::Meta::TypeConstraint');
 
-ok($negative->check(-5), '... this is a negative number');
-ok(!defined($negative->check(5)), '... this is not a negative number');
-is($negative->check('Foo'), undef, '... this is not a negative number');
+ok($negative->check(-5), 'this is a negative number');
+ok(!defined($negative->check(5)), 'this is not a negative number');
+is($negative->check('Foo'), undef, 'this is not a negative number');
 
-ok($negative->is_subtype_of('Number'), '... $negative is a subtype of Number');
-ok(!$negative->is_subtype_of('String'), '... $negative is not a subtype of String');
+ok($negative->is_subtype_of('Number'), '$negative is a subtype of Number');
+ok(!$negative->is_subtype_of('String'), '$negative is not a subtype of String');
 
 my $negative2 = subtype Number => where { $_ < 0 } => message {"$_ is not a negative number"};
 
-ok(defined $negative2, '... got a value back from negative');
+ok(defined $negative2, 'got a value back from negative');
 isa_ok($negative2, 'Moose::Meta::TypeConstraint');
 
-ok($negative2->check(-5), '... this is a negative number');
-ok(!defined($negative2->check(5)), '... this is not a negative number');
-is($negative2->check('Foo'), undef, '... this is not a negative number');
+ok($negative2->check(-5), 'this is a negative number');
+ok(!defined($negative2->check(5)), 'this is not a negative number');
+is($negative2->check('Foo'), undef, 'this is not a negative number');
 
-ok($negative2->is_subtype_of('Number'), '... $negative2 is a subtype of Number');
-ok(!$negative2->is_subtype_of('String'), '... $negative is not a subtype of String');
+ok($negative2->is_subtype_of('Number'), '$negative2 is a subtype of Number');
+ok(!$negative2->is_subtype_of('String'), '$negative is not a subtype of String');
 
-ok($negative2->has_message, '... it has a message');
+ok($negative2->has_message, 'it has a message');
 is($negative2->validate(2),
    '2 is not a negative number',
-   '... validated unsuccessfully (got error)');
+   'validated unsuccessfully (got error)');
 
 # check some meta-details
 
 my $natural_less_than_ten = find_type_constraint('NaturalLessThanTen');
 isa_ok($natural_less_than_ten, 'Moose::Meta::TypeConstraint');
 
-ok($natural_less_than_ten->is_subtype_of('Natural'), '... NaturalLessThanTen is subtype of Natural');
-ok($natural_less_than_ten->is_subtype_of('Number'), '... NaturalLessThanTen is subtype of Number');
-ok(!$natural_less_than_ten->is_subtype_of('String'), '... NaturalLessThanTen is not subtype of String');
+ok($natural_less_than_ten->is_subtype_of('Natural'), 'NaturalLessThanTen is subtype of Natural');
+ok($natural_less_than_ten->is_subtype_of('Number'), 'NaturalLessThanTen is subtype of Number');
+ok(!$natural_less_than_ten->is_subtype_of('String'), 'NaturalLessThanTen is not subtype of String');
 
-ok($natural_less_than_ten->has_message, '... it has a message');
+ok($natural_less_than_ten->has_message, 'it has a message');
 
-ok(!defined($natural_less_than_ten->validate(5)), '... validated successfully (no error)');
+ok(!defined($natural_less_than_ten->validate(5)), 'validated successfully (no error)');
 
 is($natural_less_than_ten->validate(15),
    "The number '15' is not less than 10",
-   '... validated unsuccessfully (got error)');
+   'validated unsuccessfully (got error)');
 
 my $natural = find_type_constraint('Natural');
 isa_ok($natural, 'Moose::Meta::TypeConstraint');
 
-ok($natural->is_subtype_of('Number'), '... Natural is a subtype of Number');
-ok(!$natural->is_subtype_of('String'), '... Natural is not a subtype of String');
+ok($natural->is_subtype_of('Number'), 'Natural is a subtype of Number');
+ok(!$natural->is_subtype_of('String'), 'Natural is not a subtype of String');
 
-ok(!$natural->has_message, '... it does not have a message');
+ok(!$natural->has_message, 'it does not have a message');
 
-ok(!defined($natural->validate(5)), '... validated successfully (no error)');
+ok(!defined($natural->validate(5)), 'validated successfully (no error)');
 
 is($natural->validate(-5),
   "Validation failed for 'Natural' failed with value -5",
-  '... validated unsuccessfully (got error)');
+  'validated unsuccessfully (got error)');
 
 my $string = find_type_constraint('String');
 isa_ok($string, 'Moose::Meta::TypeConstraint');
 
-ok($string->has_message, '... it does have a message');
+ok($string->has_message, 'it does have a message');
 
-ok(!defined($string->validate("Five")), '... validated successfully (no error)');
+ok(!defined($string->validate("Five")), 'validated successfully (no error)');
 
 is($string->validate(5),
 "This is not a string (5)",
-'... validated unsuccessfully (got error)');
+'validated unsuccessfully (got error)');
 
 lives_ok { Moose::Meta::Attribute->new('bob', isa => 'Spong') }
   'meta-attr construction ok even when type constraint utils loaded first';
@@ -196,32 +196,32 @@ throws_ok {$r->add_type_constraint(bless {}, 'SomeClass')} qr/not a valid type c
 {
     my $type = type( 'Number2', sub { Scalar::Util::looks_like_number($_) } );
 
-    ok( $type->check(5), '... this is a Num' );
-    ok( ! $type->check('Foo'), '... this is not a Num' );
+    ok( $type->check(5), 'this is a Num' );
+    ok( ! $type->check('Foo'), 'this is not a Num' );
 }
 
 {
     # anon subtype
     my $subtype = subtype( 'Number2', sub { $_ > 0 } );
 
-    ok( $subtype->check(5), '... this is a Natural');
-    ok( ! $subtype->check(-5), '... this is not a Natural');
-    ok( ! $subtype->check('Foo'), '... this is not a Natural');
+    ok( $subtype->check(5), 'this is a Natural');
+    ok( ! $subtype->check(-5), 'this is not a Natural');
+    ok( ! $subtype->check('Foo'), 'this is not a Natural');
 }
 
 {
     my $subtype = subtype( 'Natural2', 'Number2', sub { $_ > 0 } );
 
-    ok( $subtype->check(5), '... this is a Natural');
-    ok( ! $subtype->check(-5), '... this is not a Natural');
-    ok( ! $subtype->check('Foo'), '... this is not a Natural');
+    ok( $subtype->check(5), 'this is a Natural');
+    ok( ! $subtype->check(-5), 'this is not a Natural');
+    ok( ! $subtype->check('Foo'), 'this is not a Natural');
 }
 
 {
     my $subtype = subtype( 'Natural3', 'Number2' );
 
-    ok( $subtype->check(5), '... this is a Natural');
-    ok( $subtype->check(-5), '... this is a Natural');
-    ok( ! $subtype->check('Foo'), '... this is not a Natural');
+    ok( $subtype->check(5), 'this is a Natural');
+    ok( $subtype->check(-5), 'this is a Natural');
+    ok( ! $subtype->check('Foo'), 'this is not a Natural');
 }