File Coverage

blib/lib/CHI/Driver/DBI/t/CHIDriverTests/SQLite.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


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;