DEATH TO ALL zionist ELLIPSES
[gitmo/Moose.git] / t / 500_test_moose / 003_test_moose_has_attribute_ok.t
index 957ad33..54da3a7 100644 (file)
@@ -14,7 +14,7 @@ BEGIN {
     package Foo;
     use Moose;
 
-    has 'foo';
+    has 'foo', is => 'bare';
 }
 
 {
@@ -23,26 +23,26 @@ BEGIN {
 
     extends 'Foo';
 
-    has 'bar';
+    has 'bar', is => 'bare';
 }
 
 
 test_out('ok 1 - ... has_attribute_ok(Foo, foo) passes');
 
-has_attribute_ok('Foo', 'foo', '... has_attribute_ok(Foo, foo) passes');
+has_attribute_ok('Foo', 'foo', 'has_attribute_ok(Foo, foo) passes');
 
 test_out ('not ok 2 - ... has_attribute_ok(Foo, bar) fails');
 test_fail (+2);
 
-has_attribute_ok('Foo', 'bar', '... has_attribute_ok(Foo, bar) fails');
+has_attribute_ok('Foo', 'bar', 'has_attribute_ok(Foo, bar) fails');
 
 test_out('ok 3 - ... has_attribute_ok(Bar, foo) passes');
 
-has_attribute_ok('Bar', 'foo', '... has_attribute_ok(Bar, foo) passes');
+has_attribute_ok('Bar', 'foo', 'has_attribute_ok(Bar, foo) passes');
 
 test_out('ok 4 - ... has_attribute_ok(Bar, bar) passes');
 
-has_attribute_ok('Bar', 'bar', '... has_attribute_ok(Bar, bar) passes');
+has_attribute_ok('Bar', 'bar', 'has_attribute_ok(Bar, bar) passes');
 
 test_test ('has_attribute_ok');