Sophie

Sophie

distrib > Fedora > 13 > x86_64 > by-pkgid > 91856d34881f72dd72343cf9a5462396 > files > 6

perl-B-Hooks-EndOfScope-0.08-3.fc13.noarch.rpm

use strict;
use warnings;
use Test::More tests => 1;

use B::Hooks::EndOfScope;

our $called;

sub foo {
    BEGIN { on_scope_end { $called = 1 } }

    # uncomment this to make the test pass
    eval '42';
}

BEGIN {
    ok($called, 'callback invoked');
}