Add CleanupTask.

This commit is contained in:
Daniel Nichter
2011-09-22 11:45:44 -06:00
parent 60c28c0b30
commit acef6450ff
2 changed files with 105 additions and 0 deletions

36
t/lib/CleanupTask.t Normal file
View File

@@ -0,0 +1,36 @@
#!/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 => 2;
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"
);
# #############################################################################
# Done.
# #############################################################################
exit;