DEATH TO ALL zionist ELLIPSES
[gitmo/Moose.git] / t / 020_attributes / 002_attribute_writer_generation.t
index f7f776c..2badf5e 100644 (file)
@@ -20,7 +20,7 @@ use Scalar::Util 'isweak';
             writer => 'set_foo',
         );
     };
-    ::ok(!$@, '... created the writer method okay');
+    ::ok(!$@, 'created the writer method okay');
 
     eval {
         has 'foo_required' => (
@@ -29,7 +29,7 @@ use Scalar::Util 'isweak';
             required => 1,
         );
     };
-    ::ok(!$@, '... created the required writer method okay');
+    ::ok(!$@, 'created the required writer method okay');
 
     eval {
         has 'foo_int' => (
@@ -38,7 +38,7 @@ use Scalar::Util 'isweak';
             isa    => 'Int',
         );
     };
-    ::ok(!$@, '... created the writer method with type constraint okay');
+    ::ok(!$@, 'created the writer method with type constraint okay');
 
     eval {
         has 'foo_weak' => (
@@ -47,7 +47,7 @@ use Scalar::Util 'isweak';
             weak_ref => 1
         );
     };
-    ::ok(!$@, '... created the writer method with weak_ref okay');
+    ::ok(!$@, 'created the writer method with weak_ref okay');
 }
 
 {
@@ -57,64 +57,64 @@ use Scalar::Util 'isweak';
     # regular writer
 
     can_ok($foo, 'set_foo');
-    is($foo->get_foo(), undef, '... got an unset value');
+    is($foo->get_foo(), undef, 'got an unset value');
     lives_ok {
         $foo->set_foo(100);
-    } '... set_foo wrote successfully';
-    is($foo->get_foo(), 100, '... got the correct set value');
+    } 'set_foo wrote successfully';
+    is($foo->get_foo(), 100, 'got the correct set value');
 
-    ok(!isweak($foo->{foo}), '... it is not a weak reference');
+    ok(!isweak($foo->{foo}), 'it is not a weak reference');
 
     # required writer
 
     dies_ok {
         Foo->new;
-    } '... cannot create without the required attribute';
+    } 'cannot create without the required attribute';
 
     can_ok($foo, 'set_foo_required');
-    is($foo->get_foo_required(), 'required', '... got an unset value');
+    is($foo->get_foo_required(), 'required', 'got an unset value');
     lives_ok {
         $foo->set_foo_required(100);
-    } '... set_foo_required wrote successfully';
-    is($foo->get_foo_required(), 100, '... got the correct set value');
+    } 'set_foo_required wrote successfully';
+    is($foo->get_foo_required(), 100, 'got the correct set value');
 
     dies_ok {
         $foo->set_foo_required();
-    } '... set_foo_required died successfully with no value';
+    } 'set_foo_required died successfully with no value';
 
     lives_ok {
         $foo->set_foo_required(undef);
-    } '... set_foo_required did accept undef';
+    } 'set_foo_required did accept undef';
 
-    ok(!isweak($foo->{foo_required}), '... it is not a weak reference');
+    ok(!isweak($foo->{foo_required}), 'it is not a weak reference');
 
     # with type constraint
 
     can_ok($foo, 'set_foo_int');
-    is($foo->get_foo_int(), undef, '... got an unset value');
+    is($foo->get_foo_int(), undef, 'got an unset value');
     lives_ok {
         $foo->set_foo_int(100);
-    } '... set_foo_int wrote successfully';
-    is($foo->get_foo_int(), 100, '... got the correct set value');
+    } 'set_foo_int wrote successfully';
+    is($foo->get_foo_int(), 100, 'got the correct set value');
 
     dies_ok {
         $foo->set_foo_int("Foo");
-    } '... set_foo_int died successfully';
+    } 'set_foo_int died successfully';
 
-    ok(!isweak($foo->{foo_int}), '... it is not a weak reference');
+    ok(!isweak($foo->{foo_int}), 'it is not a weak reference');
 
     # with weak_ref
 
     my $test = [];
 
     can_ok($foo, 'set_foo_weak');
-    is($foo->get_foo_weak(), undef, '... got an unset value');
+    is($foo->get_foo_weak(), undef, 'got an unset value');
     lives_ok {
         $foo->set_foo_weak($test);
-    } '... set_foo_weak wrote successfully';
-    is($foo->get_foo_weak(), $test, '... got the correct set value');
+    } 'set_foo_weak wrote successfully';
+    is($foo->get_foo_weak(), $test, 'got the correct set value');
 
-    ok(isweak($foo->{foo_weak}), '... it is a weak reference');
+    ok(isweak($foo->{foo_weak}), 'it is a weak reference');
 }