Missed a few use_ok calls that started warning now that Moose::Role
[gitmo/Moose.git] / t / 030_roles / 019_build.t
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 {