File Coverage

blib/lib/Acme/Xyzzy.pm
Criterion Covered Total %
statement 13 13 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 1 1 100.0
total 19 19 100.0


line stmt bran cond sub pod time code
1             package Acme::Xyzzy;
2              
3             # ABSTRACT: Nothing happens.
4              
5 1     1   69220 use strict;
  1         2  
  1         27  
6 1     1   4 use warnings;
  1         2  
  1         27  
7              
8 1     1   4 use Exporter;
  1         6  
  1         40  
9 1     1   4 use vars qw(@ISA @EXPORT);
  1         1  
  1         104  
10              
11             our $VERSION = "0.001";
12              
13             @ISA = ('Exporter');
14             @EXPORT = ('xyzzy');
15              
16              
17             sub xyzzy {
18 1     1 1 1377 print "Nothing happens.\n";
19             }
20              
21             1;
22              
23             __END__