X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fp5-DBIx-Class-ResultSet-RecursiveUpdate;a=blobdiff_plain;f=t%2Fpg.t;h=8afc89191d39fe45651bdc2e693e608233814943;hp=7c4f05115736d6dc8d8b09cf418a214618526f4d;hb=1256bfdf7d47490da4d6521b1895f0f9d362a461;hpb=61a1e916e2ebcbd866939f64ec807a9be13c4452 diff --git a/t/pg.t b/t/pg.t index 7c4f051..8afc891 100644 --- a/t/pg.t +++ b/t/pg.t @@ -1,16 +1,17 @@ -# -*- perl -*- - +use strict; +use warnings; use lib 't/lib'; use DBSchema; use RunTests; use Test::More; -my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_PG_${_}" } qw/DSN USER PASS/}; +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 tables!)' unless ($dsn && $user); + . ' (note: creates and tables!)' + unless ( $dsn && $user ); my $schema = DBSchema->get_test_schema( $dsn, $user, $pass ); -run_tests( $schema ); - +run_tests($schema);