Fix type composition
[gitmo/Mouse.git] / t / lib / MooseCompat.pm
index 8bb95cf..2a8b19f 100644 (file)
@@ -1,5 +1,8 @@
 package MooseCompat;
 # Moose compatible methods/functions
+
+use Test::Builder (); # should load Test::Builder first
+
 use Mouse ();
 use Mouse::Util::MetaRole;
 use Mouse::Meta::Method;
@@ -9,7 +12,6 @@ $INC{'Mouse/Meta.pm'}          = __FILE__;
 $INC{'Mouse/Meta/Instance.pm'} = __FILE__;
 $INC{'Mouse/Deprecated.pm'}    = __FILE__;
 
-
 *UNIVERSAL::DOES = sub {
     my($thing, $role) = @_;
     $thing->isa($role);