DBIx-Custom / t / basic-quote.t /
Newer Older
11 lines | 0.172kb
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

            
11
require "$FindBin::Bin/basic.t";