File Coverage

blib/lib/DWH_File/Reference.pm
Criterion Covered Total %
statement 9 12 75.0
branch n/a
condition n/a
subroutine 3 6 50.0
pod 0 3 0.0
total 12 21 57.1


line stmt bran cond sub pod time code
1             package DWH_File::Reference;
2              
3 9     9   50 use warnings;
  9         19  
  9         269  
4 9     9   48 use strict;
  9         20  
  9         289  
5 9     9   44 use vars qw( @ISA $VERSION );
  9         18  
  9         1062  
6              
7             @ISA = qw( );
8              
9 0     0 0   sub bump_refcount { die "Abstract method called" }
10              
11 0     0 0   sub cut_refcount { die "Abstract method called" }
12              
13 0     0 0   sub vanish { die "Abstract method called" }
14              
15             1;
16              
17             __END__