DBIx-Custom / t / common-sqlite-quote.t /
Yuki Kimoto test cleanup
0419ba5 12 years ago
1 contributor
23 lines | 0.846kb
use strict;
use warnings;

use FindBin;
$ENV{DBIX_CUSTOM_TEST_RUN} = 1;

use DBIx::Custom;
{
    package DBIx::Custom;
    no warnings 'redefine';
    has dsn => 'dbi:SQLite:dbname=:memory:';
    sub quote { '""' }
    sub create_table1 { 'create table table1 (key1, key2);' }
    sub create_table1_2 {'create table table1 (key1, key2, key3, key4, key5);' }
    sub create_table1_type { 'create table table1 (key1 Date, key2 datetime);' }
    sub create_table1_highperformance { "create table table1 (ab, bc, ik, hi, ui, pq, dc);" }
    sub create_table2 { 'create table table2 (key1, key3);' }
    sub create_table2_2 { "create table table2 (key1, key2, key3)" }
    sub create_table3 { "create table table3 (key1, key2, key3)" }
    sub create_table_reserved { 'create table "table" ("select", "update")' }
}

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