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   89460 use strict;
  12         23  
  12         324  
5 12     12   60 use warnings;
  12         20  
  12         338  
6 12     12   287 use 5.006;
  12         43  
7              
8             # Modules.
9 12     12   9079 use File::Share ':all';
  12         108817  
  12         2112  
10 12     12   10960 use Moo;
  12         200217  
  12         75  
11 12     12   30973 use namespace::clean;
  12         162819  
  12         56  
12              
13             # Version.
14             our $VERSION = 0.03;
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__