Merge branch 'master' into topic/list_util_helpers
[gitmo/Moose.git] / t / 030_roles / 001_meta_role.t
index c13b336..a977ec3 100644 (file)
@@ -3,19 +3,16 @@
 use strict;
 use warnings;
 
-use Test::More tests => 29;
+use Test::More tests => 27;
 use Test::Exception;
 
-BEGIN {  
-    use_ok('Moose'); 
-    use_ok('Moose::Meta::Role');               
-}
+use Moose::Meta::Role;
 
 {
     package FooRole;
-    
+
     our $VERSION = '0.01';
-    
+
     sub foo { 'FooRole::foo' }
 }
 
@@ -37,7 +34,7 @@ is_deeply(
     [ $foo_role->get_method_list() ],
     [ 'foo' ],
     '... got the right method list');
-    
+
 # attributes ...
 
 is_deeply(