DBIx-Custom / t / dbix-custom-core-sqlite-quote.t /
Newer Older
11 lines | 0.19kb
added tests
Yuki Kimoto authored on 2011-07-29
1
# Change quote for tests
cleanup
Yuki Kimoto authored on 2011-07-30
2
use DBIx::Custom;
added tests
Yuki Kimoto authored on 2011-07-29
3
{
4
    package DBIx::Custom;
5
    no warnings 'redefine';
6
    sub quote { '""' }
7
}
8

            
cleanup
Yuki Kimoto authored on 2011-07-30
9
use FindBin;
added tests
Yuki Kimoto authored on 2011-07-29
10

            
cleanup
Yuki Kimoto authored on 2011-07-30
11
require "$FindBin::Bin/dbix-custom-core-sqlite.t";