Improve Number trait tests
[gitmo/Moose.git] / t / 030_roles / 018_runtime_roles_w_params.t
index d3eddae..0ca57ed 100644 (file)
@@ -3,20 +3,19 @@
 use strict;
 use warnings;
 
-use Test::More tests => 21;
+use Test::More;
 use Test::Exception;
 
 
-
 {
     package Foo;
     use Moose;
     has 'bar' => (is => 'ro');
-    
+
     package Bar;
     use Moose::Role;
-    
-    has 'baz' => (is => 'ro', default => 'BAZ');    
+
+    has 'baz' => (is => 'ro', default => 'BAZ');
 }
 
 # normal ...
@@ -70,4 +69,4 @@ use Test::Exception;
     is($foo->baz, 'FOO-BAZ', '... got the expect value');
 }
 
-
+done_testing;