File Coverage

blib/lib/Map/Metro/Plugin/Map/Lille.pm
Criterion Covered Total %
statement 7 8 87.5
branch n/a
condition n/a
subroutine 3 4 75.0
pod 0 2 0.0
total 10 14 71.4


line stmt bran cond sub pod time code
1 1     1   3229 use 5.14.0;
  1         3  
  1         63  
2              
3             package Map::Metro::Plugin::Map::Lille;
4              
5             our $VERSION = '0.1001'; # VERSION
6             # ABSTRACT: Map::Metro map for Lille
7              
8 1     1   4 use Moose;
  1         2  
  1         6  
9             with 'Map::Metro::Plugin::Map';
10              
11             has '+mapfile' => (
12             default => 'map-lille.metro',
13             );
14             sub map_version {
15 0     0 0 0 return $VERSION;
16             }
17             sub map_package {
18 1     1 0 3 return __PACKAGE__;
19             }
20              
21             1;
22              
23             __END__
24              
25             =pod
26              
27             =encoding utf-8
28              
29             =head1 NAME
30              
31             Map::Metro::Plugin::Map::Lille - Map::Metro map for Lille
32              
33             =head1 VERSION
34              
35             Version 0.1001, released 2015-01-09.
36              
37             =head1 SYNOPSIS
38              
39             use Map::Metro;
40             my $graph = Map::Metro->new('Lille')->parse;
41              
42             Or
43              
44             $ map-metro.pl route Lille "Gambetta" "Lille Grand Palais"
45              
46             =head1 DESCRIPTION
47              
48             See L<Map::Metro> for usage information.
49              
50             =head1 Status
51              
52             L<Map::Metro::Plugin::Map::Lille::Lines>
53              
54             This map includes:
55              
56             =over 4
57              
58             =item *
59              
60             The two metro lines [L<wikipedia|https://en.wikipedia.org/wiki/Lille_Metro>]
61              
62             =back
63              
64             =for HTML <p><a href="https://raw.githubusercontent.com/Csson/p5-Map-Metro-Lille/master/static/images/lille.png"><img src="https://raw.githubusercontent.com/Csson/p5-Map-Metro-Lille/master/static/images/lille.png" style="max-width: 600px" /></a></p>
65              
66             =head1 SOURCE
67              
68             L<https://github.com/Csson/p5-Map-Metro-Lille>
69              
70             =head1 HOMEPAGE
71              
72             L<https://metacpan.org/release/Map-Metro-Plugin-Map-Lille>
73              
74             =head1 AUTHOR
75              
76             Erik Carlsson <info@code301.com>
77              
78             =head1 COPYRIGHT AND LICENSE
79              
80             This software is copyright (c) 2015 by Erik Carlsson <info@code301.com>.
81              
82             This is free software; you can redistribute it and/or modify it under
83             the same terms as the Perl 5 programming language system itself.
84              
85             =cut