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   175913 use strict;
  12         27  
  12         314  
5 12     12   58 use warnings;
  12         59  
  12         271  
6 12     12   286 use 5.006;
  12         41  
7              
8             # Modules.
9 12     12   9748 use File::Share ':all';
  12         132933  
  12         2059  
10 12     12   10618 use Moo;
  12         192557  
  12         76  
11 12     12   29813 use namespace::clean;
  12         202259  
  12         60  
12              
13             # Version.
14             our $VERSION = 0.06;
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__