File Coverage

blib/lib/Magical/Hooker/Decorate.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 2 2 100.0
total 18 18 100.0


line stmt bran cond sub pod time code
1             package Magical::Hooker::Decorate;
2              
3 1     1   27814 use strict;
  1         3  
  1         26  
4 1     1   5 use warnings;
  1         2  
  1         31  
5              
6             require 5.008001;
7 1     1   762 use parent qw(DynaLoader);
  1         264  
  1         6  
8              
9             our $VERSION = '0.03';
10             $VERSION = eval $VERSION;
11              
12 1     1 1 232 sub dl_load_flags { 0x01 }
13              
14             __PACKAGE__->bootstrap($VERSION);
15              
16              
17 1     1 1 12 sub new { bless {}, shift };
18              
19             __PACKAGE__
20              
21             __END__