Do the $XS_VERSION trick to make XSLoader happy with a dev version
[gitmo/Moose.git] / t / 020_attributes / 018_no_init_arg.t
index f5ebf87..e5ea6c2 100644 (file)
@@ -3,7 +3,7 @@
 use strict;
 use warnings;
 
-use Test::More tests => 4;
+use Test::More;
 use Test::Exception;
 
 
@@ -11,7 +11,7 @@ use Test::Exception;
 {
     package Foo;
     use Moose;
-    
+
     eval {
         has 'foo' => (
             is => "rw",
@@ -31,3 +31,5 @@ use Test::Exception;
 
     is( $foo->foo, "blah", "field is set via setter" );
 }
+
+done_testing;