silence the warnings
Stevan Little [Tue, 18 Apr 2006 23:46:48 +0000 (23:46 +0000)]
t/055_util_type_reloading.t

index 4956de6..e0a253f 100644 (file)
@@ -12,6 +12,8 @@ BEGIN {
        use_ok('Moose');
 }
 
+$SIG{__WARN__} = sub { 0 };
+
 eval { require Foo; };
 ok(!$@, '... loaded Foo successfully') || diag $@;