File Coverage

blib/lib/WWW/Postini/Exception/AssertionFailure.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package WWW::Postini::Exception::AssertionFailure;
2            
3 1     1   6 use strict;
  1         2  
  1         59  
4 1     1   5 use warnings;
  1         2  
  1         31  
5            
6 1     1   513 use WWW::Postini::Exception;
  1         3  
  1         34  
7            
8 1     1   5 use vars qw( @ISA $VERSION );
  1         10  
  1         69  
9            
10             @ISA = qw( WWW::Postini::Exception );
11             $VERSION = '0.01';
12            
13             1;
14            
15             __END__