X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F50fork.t;h=a9fbdec88f50dfde375322293ffd56aa7c127cfe;hb=45792de6;hp=71c4808e1b2ed1d3670f41f2f5fc71a7efa7e8ff;hpb=2c2bc4e58c2146670960fc1a0a2ae802cb650506;p=dbsrgits%2FDBIx-Class.git diff --git a/t/50fork.t b/t/50fork.t index 71c4808..a9fbdec 100644 --- a/t/50fork.t +++ b/t/50fork.t @@ -1,3 +1,5 @@ +use DBIx::Class::Optional::Dependencies -skip_all_without => 'test_rdbms_pg'; + use strict; use warnings; use Test::More; @@ -5,18 +7,9 @@ use Test::Exception; 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'); - -my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_PG_${_}" } qw/DSN USER PASS/}; - -plan skip_all => 'Set $ENV{DBICTEST_PG_DSN}, _USER and _PASS to run this test' - . ' (note: creates and drops a table named artist!)' unless ($dsn && $user); - # README: If you set the env var to a number greater than 10, # we will use that many children my $num_children = $ENV{DBICTEST_FORK_STRESS} || 1; @@ -24,7 +17,8 @@ if($num_children !~ /^[0-9]+$/ || $num_children < 10) { $num_children = 10; } -my $schema = DBICTest->connect_schema($dsn, $user, $pass, { AutoCommit => 1 }); +my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_PG_${_}" } qw/DSN USER PASS/}; +my $schema = DBICTest::Schema->connect($dsn, $user, $pass, { AutoCommit => 1 }); my $parent_rs;