File Coverage

blib/lib/Map/Tube/Novosibirsk.pm
Criterion Covered Total %
statement 18 18 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod n/a
total 24 24 100.0


line stmt bran cond sub pod time code
1             package Map::Tube::Novosibirsk;
2              
3             # Pragmas.
4 6     6   561025 use strict;
  6         11  
  6         236  
5 6     6   26 use warnings;
  6         9  
  6         168  
6 6     6   121 use 5.006;
  6         22  
  6         213  
7              
8             # Modules.
9 6     6   3037 use File::Share ':all';
  6         50891  
  6         1103  
10 6     6   4760 use Moo;
  6         88702  
  6         34  
11 6     6   12335 use namespace::clean;
  6         72072  
  6         37  
12              
13             # Version.
14             our $VERSION = 0.01;
15              
16             # Get XML.
17             has xml => (
18             'is' => 'ro',
19             'default' => sub {
20             return dist_file('Map-Tube-Novosibirsk', 'novosibirsk-map.xml');
21             },
22             );
23              
24             with 'Map::Tube';
25              
26             1;
27              
28             __END__