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.61';
3 1     1   457 use strict;
  1         8  
  1         32  
4 1     1   6 use warnings;
  1         2  
  1         24  
5 1     1   412 use CHI::Test;
  1         3  
  1         7  
6 1     1   8 use base qw(CHI::Test::Class);
  1         2  
  1         470  
7              
8             sub test_ok : Tests {
9 1     1 0 1412 ok( 1, '1 is ok' );
10 1     1   8 }
  1         4  
  1         5  
11              
12             1;