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   145610 use 5.008_001;
  11         44  
4 11     11   61 use strict;
  11         27  
  11         425  
5              
6             our $VERSION = '0.06';
7              
8 11     11   68 use XSLoader;
  11         24  
  11         378  
9             XSLoader::load(__PACKAGE__, $VERSION);
10              
11 11     11   3656 use parent qw(Exporter);
  11         2318  
  11         54  
12             our @EXPORT = qw(ATTR_SUB MODIFY_CODE_ATTRIBUTES);
13              
14 11     11   5429 use attributes ();
  11         10288  
  11         292  
15              
16             1;
17             __END__