File Coverage

blib/lib/B/COW.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package B::COW;
2              
3 2     2   70961 use strict;
  2         15  
  2         61  
4 2     2   10 use warnings;
  2         3  
  2         60  
5              
6             # ABSTRACT: B::COW additional B helpers to check COW status
7              
8 2     2   20 use base 'Exporter';
  2         4  
  2         273  
9              
10             our $VERSION = '0.007'; # VERSION: generated by DZP::OurPkgVersion
11              
12 2     2   13 use XSLoader;
  2         4  
  2         162  
13              
14             XSLoader::load(__PACKAGE__);
15              
16             my @all_export = qw{ can_cow is_cow cowrefcnt cowrefcnt_max };
17              
18             our @EXPORT_OK = (
19             @all_export,
20             );
21              
22             our %EXPORT_TAGS = (
23             all => [@all_export],
24             );
25              
26              
27             1;
28              
29             __END__