From: Peter Rabbitson Date: Thu, 29 Jan 2009 09:41:53 +0000 (+0000) Subject: A pass is not strictly necessary for a test connection X-Git-Tag: v0.08240~161 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=64d5427ceaac59fa973d28050b45b7229bc05f92;p=dbsrgits%2FDBIx-Class.git A pass is not strictly necessary for a test connection --- diff --git a/t/72pg.t b/t/72pg.t index f0c4545..fa67d1c 100644 --- a/t/72pg.t +++ b/t/72pg.t @@ -38,13 +38,11 @@ use DBICTest; my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_PG_${_}" } qw/DSN USER PASS/}; -#warn "$dsn $user $pass"; - plan skip_all => 'Set $ENV{DBICTEST_PG_DSN}, _USER and _PASS to run this test '. '(note: This test drops and creates tables called \'artist\', \'casecheck\', \'array_test\' and \'sequence_test\''. ' as well as following sequences: \'pkid1_seq\', \'pkid2_seq\' and \'nonpkid_seq\''. ' as well as following schemas: \'testschema\'!)' - unless ($dsn && $user && $pass); + unless ($dsn && $user); plan tests => 37;