DBIx-Custom / t / sqlite-quote.t /
Newer Older
11 lines | 0.173kb
cleanup test
Yuki Kimoto authored on 2011-08-06
1
# Change quote for tests
2
use DBIx::Custom;
3
{
4
    package DBIx::Custom;
5
    no warnings 'redefine';
6
    sub quote { '""' }
7
}
8

            
9
use FindBin;
10

            
test cleanup
Yuki Kimoto authored on 2011-08-08
11
require "$FindBin::Bin/sqlite.t";