fix for prototype undecl issue when type constraint utils loaded before consumers...
[gitmo/Moose.git] / t / 019_method_keyword.t
index 763006c..9384c5d 100644 (file)
@@ -3,12 +3,21 @@
 use strict;
 use warnings;
 
-use Test::More no_plan => 1;
+use Test::More tests => 1;
 
 BEGIN {
     use_ok('Moose');
 }
 
+1;
+
+__END__
+
+=pod
+
+I dont think I am going to keep this feature, but 
+the tests are commented out for now.
+
 {
     package Foo;
     use Moose;
@@ -34,4 +43,6 @@ isa_ok($foo, 'Foo');
 
 is($foo->greetings('World'), 'Hello, World', '... got the right value from greetings');
 is($foo->greet_world_from('Stevan'), 'Hello, World from Stevan', '... got the right value from greet_world_from');
-is($foo->greet_world_from_me, 'Hello, World from Stevan', '... got the right value from greet_world');
\ No newline at end of file
+is($foo->greet_world_from_me, 'Hello, World from Stevan', '... got the right value from greet_world');
+
+=cut
\ No newline at end of file