DBIx-Custom / t / common-mysql.t /
Newer Older
27 lines | 1.004kb
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;
test cleanup
Yuki Kimoto authored on 2011-08-10
12
    
added common test executing ...
Yuki Kimoto authored on 2011-08-07
13
    no warnings 'redefine';
test cleanup
Yuki Kimoto authored on 2011-08-10
14
    has dsn => "dbi:mysql:database=dbix_custom";
15
    has user => 'dbix_custom';
16
    has password => 'dbix_custom';
added common test executing ...
Yuki Kimoto authored on 2011-08-07
17
    
test cleanup
Yuki Kimoto authored on 2011-08-10
18
    sub create_table1 { 'create table table1 (key1 varchar(255), key2 varchar(255)) engine=InnoDB;' }
cleanup test
Yuki Kimoto authored on 2011-08-08
19
    sub create_table1_2 {'create table table1 (key1 varchar(255), key2 varchar(255), '
test cleanup
Yuki Kimoto authored on 2011-08-10
20
     . 'key3 varchar(255), key4 varchar(255), key5 varchar(255)) engine=InnoDB;' }
test cleanup
Yuki Kimoto authored on 2011-08-10
21
    sub create_table1_type { 'create table table1 (key1 Date, key2 datetime) engine=InnoDB;;' }
test cleanup
Yuki Kimoto authored on 2011-08-10
22
    sub create_table2 { 'create table table2 (key1 varchar(255), key3 varchar(255)) engine=InnoDB;' }
23
    sub create_table_reserved {
24
      'create table `table` (`select` varchar(255), `update` varchar(255)) engine=InnoDB;' }
added common test executing ...
Yuki Kimoto authored on 2011-08-07
25
}
26

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