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   78 use strict;
  21         25  
  21         503  
4 21     21   76 use warnings;
  21         25  
  21         1265  
5              
6             our $VERSION = '1.000012';
7              
8             sub new {
9 1     1 0 2 my $str = 'end marker';
10 1         6 return bless \$str, __PACKAGE__;
11             }
12              
13             1;