DBIx-Custom / t / common-sqlite-quote.t /
Newer Older
30 lines | 1.127kb
test cleanup
Yuki Kimoto authored on 2011-08-08
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';
cleanup
Yuki Kimoto authored on 2011-08-10
11

            
12
    my $date = 'Date';
13
    my $time = 'Time';
14
    my $datetime = 'Datetime';
15

            
test cleanup
Yuki Kimoto authored on 2011-08-10
16
    has dsn => 'dbi:SQLite:dbname=:memory:';
test cleanup
Yuki Kimoto authored on 2011-08-08
17
    sub quote { '""' }
cleanup test
Yuki Kimoto authored on 2011-08-10
18
    sub create_table1 { 'create table table1 (key1 varchar, key2 varchar);' }
19
    sub create_table1_2 {'create table table1 (key1 varchar, key2 varchar, key3 varchar, key4 varchar, key5 varchar);' }
test cleanup
Yuki Kimoto authored on 2011-08-10
20
    sub create_table1_type { 'create table table1 (key1 Date, key2 datetime);' }
cleanup test
Yuki Kimoto authored on 2011-08-10
21
    
22
    sub create_table1_highperformance { "create table table1 (ab varchar, bc varchar, ik varchar, hi varchar, ui varchar, pq varchar, dc varchar);" }
23
    
24
    sub create_table2 { 'create table table2 (key1 varchar, key3 varchar);' }
25
    sub create_table2_2 { "create table table2 (key1 varchar, key2 varchar, key3 varchar)" }
26
    sub create_table3 { "create table table3 (key1 varchar, key2 varchar, key3 varchar)" }
27
    sub create_table_reserved { 'create table "table" ("select" varchar, "update" varchar)' }
test cleanup
Yuki Kimoto authored on 2011-08-08
28
}
29

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