File Coverage

blib/lib/Map/Tube/Singapore.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::Singapore;
2              
3             # Pragmas.
4 12     12   106828 use strict;
  12         24  
  12         318  
5 12     12   58 use warnings;
  12         24  
  12         291  
6 12     12   293 use 5.006;
  12         44  
7              
8             # Modules.
9 12     12   10767 use File::Share ':all';
  12         104429  
  12         2163  
10 12     12   11861 use Moo;
  12         224200  
  12         74  
11 12     12   31294 use namespace::clean;
  12         182073  
  12         57  
12              
13             # Version.
14             our $VERSION = 0.02;
15              
16             # Get XML.
17             has xml => (
18             'is' => 'ro',
19             'default' => sub {
20             return dist_file('Map-Tube-Singapore', 'singapore-map.xml');
21             },
22             );
23              
24             with 'Map::Tube';
25              
26             1;
27              
28             __END__