Add author test for use strict/warnings
[dbsrgits/DBIx-Class-Schema-Loader.git] / t / backcompat / 0.04006 / 12pg_common.t
1 use DBIx::Class::Schema::Loader::Optional::Dependencies
2     -skip_all_without => qw(test_backcompat test_rdbms_pg);
3
4 use strict;
5 use warnings;
6 use lib qw(t/backcompat/0.04006/lib);
7 use dbixcsl_common_tests;
8 use Test::More;
9
10
11 my $dsn      = $ENV{DBICTEST_PG_DSN} || '';
12 my $user     = $ENV{DBICTEST_PG_USER} || '';
13 my $password = $ENV{DBICTEST_PG_PASS} || '';
14
15 dbixcsl_common_tests->new(
16     vendor      => 'Pg',
17     auto_inc_pk => 'SERIAL NOT NULL PRIMARY KEY',
18     dsn         => $dsn,
19     user        => $user,
20     password    => $password,
21 )->run_tests();
22