File Coverage

blib/lib/barewords.pm
Criterion Covered Total %
statement 4 4 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 5 5 100.0


line stmt bran cond sub pod time code
1             package barewords;
2              
3             our $VERSION = '0.01';
4              
5             require constant;
6              
7             sub import {
8 1     1   5 my %constants = map { $_ => $_ } @_;
  3         12  
9 1         4 @_ = (constant => \%constants);
10 1         1749 goto &constant::import;
11             }
12              
13             1;
14              
15             __END__