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

            
9
use FindBin;
10

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