File Coverage

blib/lib/Acme/Madness.pm
Criterion Covered Total %
statement 6 7 85.7
branch n/a
condition n/a
subroutine 2 3 66.6
pod 1 1 100.0
total 9 11 81.8


line stmt bran cond sub pod time code
1             package Acme::Madness;
2              
3 1     1   27949 use warnings;
  1         3  
  1         30  
4 1     1   6 use strict;
  1         2  
  1         66  
5              
6             =head1 NAME
7              
8             Acme::Madness
9              
10             =cut
11              
12             our $VERSION = '1.00';
13              
14             =head1 SYNOPSIS
15              
16             use base 'Acme::Madness' ;
17              
18             =head1 FUNCTIONS
19              
20             =head2 madness
21              
22             Inherit from this module to add a some madness to your methods. There
23             is only a single empty sub called madness.
24              
25             =cut
26              
27 0     0 1   sub madness {
28             }
29              
30             =head1 AUTHOR
31              
32             Uri Guttman, C<< >>
33              
34             =head1 BUGS
35              
36             No bugs are possible. No changes will ever be made to this module.
37              
38             =head1 SUPPORT
39              
40             No support is available. Use at your own risk.
41              
42             =head1 ACKNOWLEDGEMENTS
43              
44             Who would I acknowledge for this?
45              
46             =head1 COPYRIGHT & LICENSE
47              
48             Copyright 2008 Uri Guttman, all rights reserved.
49              
50             This program is free software; you can redistribute it and/or modify it
51             under the same terms as Perl itself.
52              
53             =cut
54              
55             1; # End of Acme::Madness