File Coverage

blib/lib/Data/AMF/Type/Null.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod 0 1 0.0
total 12 13 92.3


line stmt bran cond sub pod time code
1             package Data::AMF::Type::Null;
2 2     2   1201 use strict;
  2         5  
  2         63  
3 2     2   10 use warnings;
  2         4  
  2         118  
4              
5             sub new
6             {
7 4     4 0 9 my $class = shift;
8 4         15 my $self = bless { }, $class;
9 4         28 return $self;
10             }
11              
12             1;
13              
14             __END__