Start with a copy of B::H::EOS 0.09
[p5sagit/B-Hooks-EndOfScope-WithFallback.git] / t / eval.t
CommitLineData
58b07c77 1use strict;
2use warnings;
3use Test::More tests => 1;
4
5use B::Hooks::EndOfScope;
6
7our $called;
8
9sub foo {
10 BEGIN { on_scope_end { $called = 1 } }
11
12 # uncomment this to make the test pass
13 eval '42';
14}
15
16BEGIN {
17 ok($called, 'callback invoked');
18}