Missed a few use_ok calls that started warning now that Moose::Role
Dave Rolsky [Wed, 6 Aug 2008 18:39:05 +0000 (18:39 +0000)]
warns when loaded into main.

t/030_roles/002_role.t
t/030_roles/003_apply_role.t
t/030_roles/019_build.t

index 3b99de3..b03027d 100644 (file)
@@ -3,13 +3,9 @@
 use strict;
 use warnings;
 
-use Test::More tests => 37;
+use Test::More tests => 36;
 use Test::Exception;
 
-BEGIN {  
-    use_ok('Moose::Role');               
-}
-
 =pod
 
 NOTE:
index 4be0dfa..d105868 100644 (file)
@@ -3,13 +3,9 @@
 use strict;
 use warnings;
 
-use Test::More tests => 87;
+use Test::More tests => 86;
 use Test::Exception;
 
-BEGIN {  
-    use_ok('Moose::Role');               
-}
-
 {
     package FooRole;
     use Moose::Role;
index fe38736..03b149a 100644 (file)
@@ -1,17 +1,13 @@
 #!/usr/bin/env perl
 use strict;
 use warnings;
-use Test::More tests => 7;
+use Test::More tests => 6;
 
 # this test script ensures that my idiom of:
 # role: sub BUILD, after BUILD
 # continues to work to run code after object initialization, whether the class
 # has a BUILD method or not
 
-BEGIN {
-    use_ok('Moose::Role');
-}
-
 my @CALLS;
 
 do {