File Coverage

blib/lib/mcoder/get.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package mcoder::get;
2              
3             our $VERSION = '0.02';
4              
5 1     1   433 use strict;
  1         1  
  1         23  
6 1     1   6 use warnings;
  1         1  
  1         72  
7              
8             require mcoder;
9              
10             sub import {
11 1     1   5 my $class=shift;
12 1         3 @_=($class, 'get', [@_]);
13 1         3 goto &mcoder::import
14             }
15              
16             1;
17             __END__