line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package CHI::Driver::DBI::t::CHIDriverTests::SQLite; |
2
|
|
|
|
|
|
|
$CHI::Driver::DBI::t::CHIDriverTests::SQLite::VERSION = '1.27'; |
3
|
1
|
|
|
1
|
|
842
|
use strict; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
38
|
|
4
|
1
|
|
|
1
|
|
5
|
use warnings; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
30
|
|
5
|
|
|
|
|
|
|
|
6
|
1
|
|
|
1
|
|
5
|
use base qw(CHI::Driver::DBI::t::CHIDriverTests::Base); |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
730
|
|
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
sub required_modules { return { 'DBD::SQLite' => undef } } |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
sub dsn { |
11
|
|
|
|
|
|
|
return 'dbi:SQLite:dbname=t/dbfile.db'; |
12
|
|
|
|
|
|
|
} |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
sub cleanup : Tests( shutdown ) { |
15
|
|
|
|
|
|
|
unlink 't/dbfile.db'; |
16
|
|
|
|
|
|
|
} |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
1; |