Shut up ridiculous warnings from Module::Refresh
Dave Rolsky [Sun, 6 Jun 2010 14:27:26 +0000 (09:27 -0500)]
I only saw these when running tests via make test, not via prove.

t/060_compat/001_module_refresh_compat.t

index 6e88af9..e02a882 100644 (file)
@@ -81,7 +81,7 @@ ok(!TestBaz->isa('Foo'), '... TestBaz is not a Foo');
 }
 
 lives_ok {
-    Module::Refresh->new->refresh_module($test_module_file)
+    Module::Refresh->new->refresh_module('TestBaz.pm')
 } '... successfully refreshed ' . $test_module_file;
 
 is(TestBaz->meta->name, 'TestBaz', '... initialized the meta correctly');