mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-01 18:25:59 +00:00
54 lines
954 B
Perl
54 lines
954 B
Perl
#!/usr/bin/perl
|
|
|
|
BEGIN {
|
|
die "The PERCONA_TOOLKIT_BRANCH environment variable is not set.\n"
|
|
unless $ENV{PERCONA_TOOLKIT_BRANCH} && -d $ENV{PERCONA_TOOLKIT_BRANCH};
|
|
unshift @INC, "$ENV{PERCONA_TOOLKIT_BRANCH}/lib";
|
|
};
|
|
|
|
use strict;
|
|
use warnings FATAL => 'all';
|
|
use English qw(-no_match_vars);
|
|
use Test::More tests => 4;
|
|
|
|
use PerconaTest;
|
|
use CleanupTask;
|
|
|
|
my $foo = 0;
|
|
{
|
|
my $set_foo = new CleanupTask(sub { $foo = 42; });
|
|
is(
|
|
$foo,
|
|
0,
|
|
"Cleanup task not called yet"
|
|
);
|
|
}
|
|
|
|
is(
|
|
$foo,
|
|
42,
|
|
"Cleanup task called after obj destroyed"
|
|
);
|
|
|
|
|
|
$foo = 0;
|
|
my $set_foo = new CleanupTask(sub { $foo = 42; });
|
|
|
|
is(
|
|
$foo,
|
|
0,
|
|
"Cleanup task not called yet"
|
|
);
|
|
|
|
$set_foo = undef;
|
|
is(
|
|
$foo,
|
|
42,
|
|
"Cleanup task called after obj=undef"
|
|
);
|
|
|
|
# #############################################################################
|
|
# Done.
|
|
# #############################################################################
|
|
exit;
|