DBIx-Custom / DBIx-Custom-0.1711 / t / common-postgresql-private.t /
Newer Older
20 lines | 0.505kb
added common test executing ...
Yuki Kimoto authored on 2011-08-07
1
use strict;
2
use warnings;
3

            
4
use FindBin;
5
$ENV{DBIX_CUSTOM_TEST_RUN} = 1
6
  if -f "$FindBin::Bin/run/common-postgresql-private.tmp";
7
$ENV{DBIX_CUSTOM_SKIP_MESSAGE} = 'postgresql private test';
8

            
9
use DBIx::Custom;
10
{
11
    package DBIx::Custom;
12
    no warnings 'redefine';
13
    sub dsn { "dbi:Pg:dbname=dbix_custom" }
14
    sub user { 'dbix_custom' }
15
    sub password { 'dbix_custom' }
16
    
17
    sub create_table1 { 'create table table1 (key1 varchar(255), key2 varchar(255));' }
18
}
19

            
20
require "$FindBin::Bin/common.t";