File Coverage

blib/lib/CHI/t/Sanity.pm
Criterion Covered Total %
statement 7 9 77.7
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 10 12 83.3


line stmt bran cond sub pod time code
1             package CHI::t::Sanity;
2             $CHI::t::Sanity::VERSION = '0.59';
3 1     1   488 use strict;
  1         1  
  1         45  
4 1     1   6 use warnings;
  1         2  
  1         31  
5 1     1   491 use CHI::Test;
  0            
  0            
6             use base qw(CHI::Test::Class);
7              
8             sub test_ok : Tests {
9             ok( 1, '1 is ok' );
10             }
11              
12             1;