File Coverage

blib/lib/Acme/Noose.pm
Criterion Covered Total %
statement 10 10 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 14 14 100.0


line stmt bran cond sub pod time code
1             package Acme::Noose;
2 1     1   712 use strict;
  1         2  
  1         48  
3 1     1   10 use warnings;
  1         1  
  1         40  
4             # ABSTRACT: just enough object orientation to hang yourself
5             our $VERSION = '0.001'; # VERSION
6              
7 1     1   521 use Noose ();
  1         8  
  1         31  
8             BEGIN {
9 1     1   36 *Acme::Noose:: = \%Noose::;
10             }
11              
12              
13             1;
14              
15             __END__