DBIx-Custom / t / common-sqlite-quote.t /
Yuki Kimoto test cleanup
04a67a0 12 years ago
1 contributor
16 lines | 0.314kb
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 quote { '""' }
    sub create_table1 { 'create table table1 (key1, key2);' }
}

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