DBIx-Custom / t / common-sqlite.t /
Yuki Kimoto cleanup test
08c3c54 12 years ago
1 contributor
16 lines | 0.372kb
use strict;
use warnings;

use FindBin;
$ENV{DBIX_CUSTOM_TEST_RUN} = 1;

use DBIx::Custom;
{
    package DBIx::Custom;
    no warnings 'redefine';
    sub dsn { 'dbi:SQLite:dbname=:memory:' }
    sub create_table1 { 'create table table1 (key1, key2);' }
    sub create_table1_2 {'create table table1 (key1, key2, key3, key4, key5);' }
}

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