File Coverage

blib/lib/CHI/t/Sanity.pm
Criterion Covered Total %
statement 16 16 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod 0 1 0.0
total 22 23 95.6


line stmt bran cond sub pod time code
1             package CHI::t::Sanity;
2             $CHI::t::Sanity::VERSION = '0.60';
3 1     1   307 use strict;
  1         1  
  1         30  
4 1     1   3 use warnings;
  1         1  
  1         19  
5 1     1   290 use CHI::Test;
  1         3  
  1         7  
6 1     1   7 use base qw(CHI::Test::Class);
  1         2  
  1         552  
7              
8             sub test_ok : Tests {
9 1     1 0 1057 ok( 1, '1 is ok' );
10 1     1   11 }
  1         3  
  1         7  
11              
12             1;