increment $VERSION after 1.003029 release
[p5sagit/Devel-REPL.git] / t / load_plugins.t
old mode 100755 (executable)
new mode 100644 (file)
index e7d1655..a2c0e0e
@@ -2,7 +2,7 @@
 use strict;
 use warnings;
 
-use Test::More;
+use Test::More 0.88;
 use if $ENV{AUTHOR_TESTING}, 'Test::Warnings';
 
 use_ok('Devel::REPL');
@@ -59,7 +59,8 @@ sub test_load_plugin {
         eval "use Devel::REPL::Plugin::$plugin_name; 1"
             or skip "could not eval plugin $plugin_name", 1;
 
-        ok(eval { $repl->load_plugin($plugin_name); 1 }, $test_name);
+        ok(eval { $repl->load_plugin($plugin_name); 1 }, $test_name)
+            or diag $@;
     }
 }