File Coverage

blib/lib/Map/Metro/Elk.pm
Criterion Covered Total %
statement 30 30 100.0
branch n/a
condition n/a
subroutine 9 9 100.0
pod 0 1 0.0
total 39 40 97.5


line stmt bran cond sub pod time code
1 2     2   18 use 5.10.0;
  2         5  
2 2     2   9 use strict;
  2         3  
  2         42  
3 2     2   7 use warnings;
  2         3  
  2         105  
4              
5             # ABSTRACT: Internal Moose
6             our $AUTHORITY = 'cpan:CSSON'; # AUTHORITY
7             our $VERSION = '0.2404';
8              
9             package Map::Metro::Elk;
10              
11 2     2   1161 use Moose();
  2         767524  
  2         78  
12 2     2   1660 use MooseX::AttributeShortcuts();
  2         501431  
  2         56  
13 2     2   800 use MooseX::AttributeDocumented();
  2         9038  
  2         55  
14 2     2   10 use namespace::autoclean();
  2         2  
  2         25  
15 2     2   5 use Moose::Exporter;
  2         2  
  2         6  
16              
17             Moose::Exporter->setup_import_methods(also => ['Moose']);
18              
19             sub init_meta {
20 32     32 0 2099 my $class = shift;
21              
22 32         134 my %params = @_;
23 32         52 my $for_class = $params{'for_class'};
24 32         105 Moose->init_meta(@_);
25 32         96204 MooseX::AttributeShortcuts->init_meta(for_class => $for_class);
26 32         93656 MooseX::AttributeDocumented->init_meta(for_class => $for_class);
27 32         556 namespace::autoclean->import(-cleanee => $for_class, -except => [qw/system_maps found_plugins/]);
28             }
29              
30             1;
31              
32             __END__
33              
34             =pod
35              
36             =encoding UTF-8
37              
38             =head1 NAME
39              
40             Map::Metro::Elk - Internal Moose
41              
42             =head1 VERSION
43              
44             Version 0.2404, released 2016-04-30.
45              
46             =head1 SOURCE
47              
48             L<https://github.com/Csson/p5-Map-Metro>
49              
50             =head1 HOMEPAGE
51              
52             L<https://metacpan.org/release/Map-Metro>
53              
54             =head1 AUTHOR
55              
56             Erik Carlsson <info@code301.com>
57              
58             =head1 COPYRIGHT AND LICENSE
59              
60             This software is copyright (c) 2016 by Erik Carlsson.
61              
62             This is free software; you can redistribute it and/or modify it under
63             the same terms as the Perl 5 programming language system itself.
64              
65             =cut