File Coverage

blib/lib/Map/Tube/Minsk.pm
Criterion Covered Total %
statement 17 17 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod n/a
total 23 23 100.0


line stmt bran cond sub pod time code
1             package Map::Tube::Minsk;
2              
3             # Pragmas.
4 8     8   99653 use strict;
  8         14  
  8         187  
5 8     8   40 use warnings;
  8         11  
  8         174  
6 8     8   178 use 5.006;
  8         29  
7              
8             # Modules.
9 8     8   5481 use File::Share ':all';
  8         66195  
  8         1341  
10 8     8   6756 use Moo;
  8         123599  
  8         48  
11 8     8   21629 use namespace::clean;
  8         147660  
  8         39  
12              
13             # Version.
14             our $VERSION = 0.04;
15              
16             # Get XML.
17             has xml => (
18             'is' => 'ro',
19             'default' => sub {
20             return dist_file('Map-Tube-Minsk', 'minsk-map.xml');
21             },
22             );
23              
24             with 'Map::Tube';
25              
26             1;
27              
28             __END__