- or download this
#!/usr/bin/perl
use lib 'lib';
use strict;
...
wait; # for our child
done_testing();
- or download this
use strict;
use warnings;
...
#wait; # for our child, this is handled by fork_ok
#done_testing(); not needed
- or download this
use strict;
use warnings;
...
$dbh_locked->disconnect;
done_testing();