DBIx-Custom / t / common-postgresql.t /
Yuki Kimoto test cleanup
04a67a0 12 years ago
1 contributor
20 lines | 0.497kb
use strict;
use warnings;

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

use DBIx::Custom;
{
    package DBIx::Custom;
    no warnings 'redefine';
    sub dsn { "dbi:Pg:dbname=dbix_custom" }
    sub user { 'dbix_custom' }
    sub password { 'dbix_custom' }
    
    sub create_table1 { 'create table table1 (key1 varchar(255), key2 varchar(255));' }
}

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