File Coverage

blib/lib/Acme/Resume/Internal.pm
Criterion Covered Total %
statement 23 23 100.0
branch n/a
condition 1 2 50.0
subroutine 7 7 100.0
pod n/a
total 31 32 96.8


line stmt bran cond sub pod time code
1             package Acme::Resume::Internal;
2              
3             # ABSTRACT: Moops wrapper for internal use
4             our $VERSION = '0.0104';
5              
6 1     1   8 use strict;
  1         2  
  1         36  
7 1     1   5 use warnings;
  1         3  
  1         29  
8              
9 1     1   6 use base 'MoopsX::UsingMoose';
  1         2  
  1         147  
10              
11 1     1   644 use Types::Standard();
  1         111175  
  1         42  
12 1     1   490 use Types::URI();
  1         148189  
  1         37  
13 1     1   432 use Acme::Resume::Types();
  1         5  
  1         139  
14              
15             sub import {
16 2     2   7 my $class = shift;
17 2         9 my %opts = @_;
18              
19 2   50     5 push @{ $opts{'imports'} ||= [] } => (
  2         28  
20             'Types::Standard' => ['-types'],
21             'Types::URI' => ['-types'],
22             'Acme::Resume::Types' => [{ replace => 1 }, '-types'],
23             );
24              
25 2         27 $class->SUPER::import(%opts);
26             }
27              
28             1;
29              
30             __END__
31              
32             =pod
33              
34             =encoding UTF-8
35              
36             =head1 NAME
37              
38             Acme::Resume::Internal - Moops wrapper for internal use
39              
40             =head1 VERSION
41              
42             Version 0.0104, released 2021-08-31.
43              
44             =head1 SOURCE
45              
46             L<https://github.com/Csson/p5-Acme-Resume>
47              
48             =head1 HOMEPAGE
49              
50             L<https://metacpan.org/release/Acme-Resume>
51              
52             =head1 AUTHOR
53              
54             Erik Carlsson <info@code301.com>
55              
56             =head1 COPYRIGHT AND LICENSE
57              
58             This software is copyright (c) 2021 by Erik Carlsson.
59              
60             This is free software; you can redistribute it and/or modify it under
61             the same terms as the Perl 5 programming language system itself.
62              
63             =cut