X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F50fork.t;h=3ddcaf3017d63dab6a15e3508dbea03676136528;hb=8d6b1478d8fa6f7c76e313ee72a72d5eb4c24d03;hp=1d51605df9308aa27383900eaf5f840ba47b07c0;hpb=6892eb09b6090628ae4e7092767da0cbff8afcbc;p=dbsrgits%2FDBIx-Class.git diff --git a/t/50fork.t b/t/50fork.t index 1d51605..3ddcaf3 100644 --- a/t/50fork.t +++ b/t/50fork.t @@ -1,8 +1,13 @@ use strict; use warnings; use Test::More; + +use lib qw(t/lib); +use DBICTest; use DBIx::Class::Optional::Dependencies (); +my $main_pid = $$; + plan skip_all => 'Test needs ' . DBIx::Class::Optional::Dependencies->req_missing_for ('rdbms_pg') unless DBIx::Class::Optional::Dependencies->req_ok_for ('rdbms_pg'); @@ -18,12 +23,6 @@ if($num_children !~ /^[0-9]+$/ || $num_children < 10) { $num_children = 10; } -plan tests => ($num_children*2) + 6; - -use lib qw(t/lib); - -use_ok('DBICTest::Schema'); - my $schema = DBICTest::Schema->connect($dsn, $user, $pass, { AutoCommit => 1 }); my $parent_rs; @@ -117,4 +116,9 @@ while(@pids) { ok(1, "Made it to the end"); -$schema->storage->dbh->do("DROP TABLE cd"); +done_testing; + +END { + $schema->storage->dbh->do("DROP TABLE cd") if ($schema and $main_pid == $$); + undef $schema; +}