File Coverage

blib/lib/Sub/Attribute.pm
Criterion Covered Total %
statement 14 14 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 19 19 100.0


line stmt bran cond sub pod time code
1             package Sub::Attribute;
2              
3 11     11   679769 use 5.008_001;
  11         131  
4 11     11   64 use strict;
  11         19  
  11         496  
5              
6             our $VERSION = '0.07';
7              
8 11     11   70 use XSLoader;
  11         21  
  11         503  
9             XSLoader::load(__PACKAGE__, $VERSION);
10              
11 11     11   4418 use parent qw(Exporter);
  11         3103  
  11         78  
12             our @EXPORT = qw(ATTR_SUB MODIFY_CODE_ATTRIBUTES);
13              
14 11     11   6404 use attributes ();
  11         13655  
  11         367  
15              
16             1;
17             __END__