File Coverage

blib/lib/MaxMind/DB/Reader/Data/EndMarker.pm
Criterion Covered Total %
statement 8 8 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod 0 1 0.0
total 11 12 91.6


line stmt bran cond sub pod time code
1             package MaxMind::DB::Reader::Data::EndMarker;
2              
3 21     21   170 use strict;
  21         43  
  21         597  
4 21     21   108 use warnings;
  21         49  
  21         1653  
5              
6             our $VERSION = '1.000014';
7              
8             sub new {
9 1     1 0 3 my $str = 'end marker';
10 1         6 return bless \$str, __PACKAGE__;
11             }
12              
13             1;