File Coverage

blib/lib/Module/Install/Contributors.pm
Criterion Covered Total %
statement 14 17 82.3
branch n/a
condition 0 2 0.0
subroutine 5 6 83.3
pod 1 1 100.0
total 20 26 76.9


line stmt bran cond sub pod time code
1             package Module::Install::Contributors;
2              
3 1     1   668 use 5.006;
  1         3  
  1         36  
4 1     1   5 use strict;
  1         2  
  1         33  
5 1     1   7 use warnings;
  1         11  
  1         48  
6              
7             BEGIN {
8 1     1   2 $Module::Install::Contributors::AUTHORITY = 'cpan:TOBYINK';
9 1         17 $Module::Install::Contributors::VERSION = '0.001';
10             }
11              
12 1     1   5 use base qw(Module::Install::Base);
  1         1  
  1         662  
13              
14             sub contributors
15             {
16 0     0 1   my $self = shift;
17 0   0       push @{ $self->Meta->{values}{x_contributors} ||= [] }, @_;
  0            
18             }
19              
20             1;
21              
22             __END__