]> Dogcows Code - chaz/p5-DBIx-Class-ResultSet-RecursiveUpdate/blobdiff - t/pg.t
added use strict and use warnings to all tests + perltidy
[chaz/p5-DBIx-Class-ResultSet-RecursiveUpdate] / t / pg.t
diff --git a/t/pg.t b/t/pg.t
index 7c4f05115736d6dc8d8b09cf418a214618526f4d..8afc89191d39fe45651bdc2e693e608233814943 100644 (file)
--- 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);
This page took 0.017787 seconds and 4 git commands to generate.