File Coverage

blib/lib/Acme/DieOnLoad.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1 1     1   942 use strict;
  1         2  
  1         35  
2 1     1   6 use warnings;
  1         1  
  1         78  
3             package Acme::DieOnLoad; # git description: 740e729
4             # ABSTRACT: A module that dies when loaded
5             # KEYWORDS: toolchain module distribution experimental test die broken
6             # vim: set ts=8 sts=4 sw=4 tw=115 et :
7              
8             our $VERSION = '0.001';
9              
10             die 'I told you so. What did you expect?';
11              
12             1;
13              
14             __END__