File Coverage

blib/lib/Map/Metro/Plugin/Map/Bilbao.pm
Criterion Covered Total %
statement 13 14 92.8
branch n/a
condition n/a
subroutine 5 6 83.3
pod 0 2 0.0
total 18 22 81.8


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