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 8     8   107080 use strict;
  8         17  
  8         204  
5 8     8   39 use warnings;
  8         14  
  8         188  
6 8     8   182 use 5.006;
  8         33  
7              
8             # Modules.
9 8     8   5806 use File::Share ':all';
  8         70862  
  8         1416  
10 8     8   7083 use Moo;
  8         126527  
  8         89  
11 8     8   20808 use namespace::clean;
  8         105365  
  8         36  
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-Samara', 'samara-map.xml');
21             },
22             );
23              
24             with 'Map::Tube';
25              
26             1;
27              
28             __END__