File Coverage

blib/lib/Map/Metro/Plugin/Map/Budapest.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   3479 use 5.14.0;
  1         3  
  1         70  
2              
3             package Map::Metro::Plugin::Map::Budapest;
4              
5             our $VERSION = '0.1000'; # VERSION
6             # ABSTRACT: Map::Metro map for Budapest
7              
8 1     1   60 use Moose;
  1         2  
  1         9  
9             with 'Map::Metro::Plugin::Map';
10              
11             has '+mapfile' => (
12             default => 'map-budapest.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::Budapest - Map::Metro map for Budapest
32              
33             =head1 VERSION
34              
35             Version 0.1000, released 2015-01-08.
36              
37             =head1 SYNOPSIS
38              
39             use Map::Metro;
40             my $graph = Map::Metro->new('Budapest')->parse;
41              
42             Or
43              
44             $ map-metro.pl route Budapest "II. János Pál pápa tér" "Opera"
45              
46             =head1 DESCRIPTION
47              
48             See L<Map::Metro> for usage information.
49              
50             =head1 Status
51              
52             L<Map::Metro::Plugin::Map::Budapest::Lines>
53              
54             This map consists of:
55              
56             =over 4
57              
58             =item *
59              
60             The four metro lines [L<wikipedia|https://en.wikipedia.org/wiki/Budapest_Metro>]
61              
62             =back
63              
64             =for HTML <p><a href="https://raw.githubusercontent.com/Csson/p5-Map-Metro-Budapest/master/static/images/budapest.png"><img src="https://raw.githubusercontent.com/Csson/p5-Map-Metro-Budapest/master/static/images/budapest.png" style="max-width: 600px" /></a></p>
65              
66             =head1 SOURCE
67              
68             L<https://github.com/Csson/p5-Map-Metro-Budapest>
69              
70             =head1 HOMEPAGE
71              
72             L<https://metacpan.org/release/Map-Metro-Plugin-Map-Budapest>
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