use blib 't/Sub-Op-LexicalSub';
-use Test::More tests => 2 * 15 + 3 * 2 + 2 * 28;
+use Test::More tests => (1 + 3) * 15 + (1 + 2 * 3) * 2 + 2 * 28;
our $called;
$test .= <<" CHECK_VIVID"
BEGIN {
no warnings 'uninitialized'; # Test::Builder can't get the file name
- is *main::${name}\{CODE\}, undef, '$name: no symbol table vivification';
+ ok !exists &main::${name}, '$name: not stubbed';
+ ok !defined &main::${name}, '$name: body not defined';
+ is *main::${name}\{CODE\}, undef, '$name: empty symbol table entry';
}
CHECK_VIVID
}