+ - Properly skip debugger test when optional deps not available
+
[0.23]
- Rely on B::Hooks::EndOfScope version 0.10 to fix issues with
new Module::Runtime versions (>= 0.012) on perl 5.10 due
use Test::More;
BEGIN {
+ eval { require Sub::Name }
+ or plan skip_all => "Test requires Sub::Name";
+
+ eval { require Sub::Identify }
+ or plan skip_all => "Test requires Sub::Identify";
+}
+
+
+BEGIN {
# shut up the debugger
$ENV{PERLDB_OPTS} = 'NonStop';