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   3125 use 5.14.0;
  1         2  
  1         88  
2              
3             package Map::Metro::Plugin::Map::Lille;
4              
5             our $VERSION = '0.1002'; # 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 2 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              
34              
35             =begin HTML
36              
37             <p><img src="https://img.shields.io/badge/perl-5.16+-brightgreen.svg" alt="Requires Perl 5.16+" /> <a href="https://travis-ci.org/Csson/p5-Map-Metro-Lille"><img src="https://api.travis-ci.org/Csson/p5-Map-Metro-Lille.svg?branch=master" alt="Travis status" /></a></p>
38              
39             =end HTML
40              
41              
42             =begin markdown
43              
44             ![Requires Perl 5.16+](https://img.shields.io/badge/perl-5.16+-brightgreen.svg) [![Travis status](https://api.travis-ci.org/Csson/p5-Map-Metro-Lille.svg?branch=master)](https://travis-ci.org/Csson/p5-Map-Metro-Lille)
45              
46             =end markdown
47              
48             =head1 VERSION
49              
50             Version 0.1002, released 2015-05-09.
51              
52             =head1 SYNOPSIS
53              
54             use Map::Metro;
55             my $graph = Map::Metro->new('Lille')->parse;
56              
57             Or
58              
59             $ map-metro.pl route Lille "Gambetta" "Lille Grand Palais"
60              
61             =head1 DESCRIPTION
62              
63             See L<Map::Metro> for usage information.
64              
65             =head1 Status
66              
67             L<Map::Metro::Plugin::Map::Lille::Lines>
68              
69             This map includes:
70              
71             =over 4
72              
73             =item *
74              
75             The two metro lines [L<wikipedia|https://en.wikipedia.org/wiki/Lille_Metro>]
76              
77             =back
78              
79             =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>
80              
81             =head1 SOURCE
82              
83             L<https://github.com/Csson/p5-Map-Metro-Lille>
84              
85             =head1 HOMEPAGE
86              
87             L<https://metacpan.org/release/Map-Metro-Plugin-Map-Lille>
88              
89             =head1 AUTHOR
90              
91             Erik Carlsson <info@code301.com>
92              
93             =head1 COPYRIGHT AND LICENSE
94              
95             This software is copyright (c) 2015 by Erik Carlsson <info@code301.com>.
96              
97             This is free software; you can redistribute it and/or modify it under
98             the same terms as the Perl 5 programming language system itself.
99              
100             =cut