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             {
3             $CHI::Driver::DBI::t::CHIDriverTests::SQLite::VERSION = '1.26';
4             }
5 1     1   750 use strict;
  1         2  
  1         29  
6 1     1   5 use warnings;
  1         1  
  1         26  
7              
8 1     1   5 use base qw(CHI::Driver::DBI::t::CHIDriverTests::Base);
  1         2  
  1         631  
9              
10             sub required_modules { return { 'DBD::SQLite' => undef } }
11              
12             sub dsn {
13             return 'dbi:SQLite:dbname=t/dbfile.db';
14             }
15              
16             sub cleanup : Tests( shutdown ) {
17             unlink 't/dbfile.db';
18             }
19              
20             1;