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   158114 use strict;
  12         142  
  12         450  
5 12     12   102 use warnings;
  12         32  
  12         417  
6 12     12   394 use 5.006;
  12         70  
7              
8             # Modules.
9 12     12   4326 use File::Share ':all';
  12         125759  
  12         6213  
10 12     12   8833 use Moo;
  12         183566  
  12         144  
11 12     12   32689 use namespace::clean;
  12         168190  
  12         107  
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-Singapore', 'singapore-map.xml');
21             },
22             );
23              
24             with 'Map::Tube';
25              
26             1;
27              
28             __END__