File Coverage

blib/lib/Map/Tube/Bucharest.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::Bucharest;
2              
3             # Pragmas.
4 12     12   97272 use strict;
  12         26  
  12         312  
5 12     12   59 use warnings;
  12         20  
  12         330  
6 12     12   287 use 5.006;
  12         44  
7              
8             # Modules.
9 12     12   9984 use File::Share ':all';
  12         103226  
  12         1935  
10 12     12   10582 use Moo;
  12         193639  
  12         73  
11 12     12   30183 use namespace::clean;
  12         158670  
  12         56  
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-Bucharest', 'bucharest-map.xml');
21             },
22             );
23              
24             with 'Map::Tube';
25              
26             1;
27              
28             __END__