projects
/
p5sagit/Devel-REPL.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
8516134
)
print the error when loading failed unexpectedly
Karen Etheridge [Tue, 24 Sep 2013 04:22:16 +0000 (21:22 -0700)]
t/load_plugins.t
patch
|
blob
|
blame
|
history
diff --git
a/t/load_plugins.t
b/t/load_plugins.t
index
e7d1655
..
40b11c7
100755
(executable)
--- a/
t/load_plugins.t
+++ b/
t/load_plugins.t
@@
-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 $@;
}
}