File Coverage

blib/lib/Acme/Sneeze.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod 0 1 0.0
total 12 13 92.3


line stmt bran cond sub pod time code
1             package Acme::Sneeze;
2              
3 3     3   23465 use strict;
  3         5  
  3         144  
4             our $VERSION = '0.02';
5              
6 3     3   2373 use Exporter::Lite;
  3         2036  
  3         19  
7             our @EXPORT = qw(sneeze);
8              
9             sub sneeze {
10 2     2 0 854 my $self = shift;
11 2         4 my $pkg = caller;
12 2         6 bless $self, $pkg;
13             }
14              
15             1;
16             __END__