File Coverage

blib/lib/Map/Tube/Moscow.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::Moscow;
2              
3             # Pragmas.
4 8     8   116668 use strict;
  8         17  
  8         252  
5 8     8   43 use warnings;
  8         13  
  8         197  
6 8     8   189 use 5.006;
  8         32  
7              
8             # Modules.
9 8     8   6491 use File::Share ':all';
  8         79516  
  8         1500  
10 8     8   8241 use Moo;
  8         141768  
  8         54  
11 8     8   23314 use namespace::clean;
  8         120260  
  8         49  
12              
13             # Version.
14             our $VERSION = 0.07;
15              
16             # Get XML.
17             has xml => (
18             'is' => 'ro',
19             'default' => sub {
20             return dist_file('Map-Tube-Moscow', 'moscow-map.xml');
21             },
22             );
23              
24             with 'Map::Tube';
25              
26             1;
27              
28             __END__