DBIx-Custom / t / common-sqlite.t /
Newer Older
16 lines | 0.372kb
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

            
7
use DBIx::Custom;
8
{
9
    package DBIx::Custom;
10
    no warnings 'redefine';
test cleanup
Yuki Kimoto authored on 2011-08-10
11
    has dsn => 'dbi:SQLite:dbname=:memory:';
added common test executing ...
Yuki Kimoto authored on 2011-08-07
12
    sub create_table1 { 'create table table1 (key1, key2);' }
cleanup test
Yuki Kimoto authored on 2011-08-08
13
    sub create_table1_2 {'create table table1 (key1, key2, key3, key4, key5);' }
added common test executing ...
Yuki Kimoto authored on 2011-08-07
14
}
15

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