File Coverage

blib/lib/Map/Tube/Samara.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::Samara;
2              
3             # Pragmas.
4 12     12   173775 use strict;
  12         27  
  12         304  
5 12     12   63 use warnings;
  12         18  
  12         280  
6 12     12   264 use 5.006;
  12         43  
7              
8             # Modules.
9 12     12   9694 use File::Share ':all';
  12         107556  
  12         2132  
10 12     12   10942 use Moo;
  12         188926  
  12         72  
11 12     12   30157 use namespace::clean;
  12         160090  
  12         55  
12              
13             # Version.
14             our $VERSION = 0.05;
15              
16             # Get XML.
17             has xml => (
18             'is' => 'ro',
19             'default' => sub {
20             return dist_file('Map-Tube-Samara', 'samara-map.xml');
21             },
22             );
23              
24             with 'Map::Tube';
25              
26             1;
27              
28             __END__