DBIx-Custom / t / common-mysql.t /
Newer Older
22 lines | 0.648kb
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
test cleanup
Yuki Kimoto authored on 2011-08-08
6
  if -f "$FindBin::Bin/run/common-mysql.tmp";
added common test executing ...
Yuki Kimoto authored on 2011-08-07
7
$ENV{DBIX_CUSTOM_SKIP_MESSAGE} = 'mysql private test';
8

            
9
use DBIx::Custom;
10
{
11
    package DBIx::Custom;
12
    no warnings 'redefine';
13
    sub dsn { "dbi:mysql:database=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));' }
cleanup test
Yuki Kimoto authored on 2011-08-08
18
    sub create_table1_2 {'create table table1 (key1 varchar(255), key2 varchar(255), '
19
     . 'key3 varchar(255), key4 varchar(255), key5 varchar(255));' }
added common test executing ...
Yuki Kimoto authored on 2011-08-07
20
}
21

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