File Coverage

blib/lib/ExtUtils/Builder/FileSet/Free.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 0 1 0.0
total 16 17 94.1


line stmt bran cond sub pod time code
1             package ExtUtils::Builder::FileSet::Free;
2             $ExtUtils::Builder::FileSet::Free::VERSION = '0.020';
3 6     6   153386 use strict;
  6         12  
  6         264  
4 6     6   43 use warnings;
  6         12  
  6         371  
5              
6 6     6   33 use base 'ExtUtils::Builder::FileSet';
  6         11  
  6         3400  
7              
8             sub add_input {
9 11     11 0 24 my ($self, $entry) = @_;
10 11         51 $self->_pass_on($entry);
11 11         24 return $entry;
12             }
13              
14             1;