File Coverage

blib/lib/Acme/kevinz.pm
Criterion Covered Total %
statement 9 14 64.2
branch n/a
condition n/a
subroutine 3 5 60.0
pod 2 2 100.0
total 14 21 66.6


line stmt bran cond sub pod time code
1             package Acme::kevinz;
2              
3 1     1   91216 use 5.006;
  1         5  
  1         66  
4 1     1   8 use strict;
  1         3  
  1         40  
5 1     1   6 use warnings;
  1         18  
  1         192  
6              
7             =head1 NAME
8              
9             Acme::kevinz - The great new Acme::kevinz!
10              
11             =head1 VERSION
12              
13             Version 0.03
14              
15             =cut
16              
17             our $VERSION = '0.03';
18              
19              
20             =head1 SYNOPSIS
21              
22             Quick summary of what the module does.
23              
24             Perhaps a little code snippet.
25              
26             use Acme::kevinz;
27              
28             my $foo = Acme::kevinz->new();
29             ...
30              
31             =head1 EXPORT
32              
33             A list of functions that can be exported. You can delete this section
34             if you don't export anything, such as for a purely object-oriented module.
35              
36             =head1 SUBROUTINES/METHODS
37              
38             =head2 function1
39              
40             =cut
41              
42 0     0 1   sub function1 {
43             }
44              
45             =head2 sum
46              
47             Returns the sum of numbers.
48              
49             =cut
50              
51             sub sum {
52 0     0 1   my $sum;
53 0           foreach (@_) {
54 0           $sum += $_;
55             }
56 0           return $sum;
57             }
58              
59             =head1 AUTHOR
60              
61             E. Kevin Zembower, C<< >>
62              
63             =head1 BUGS
64              
65             Please report any bugs or feature requests to C, or through
66             the web interface at L. I will be notified, and then you'll
67             automatically be notified of progress on your bug as I make changes.
68              
69              
70              
71              
72             =head1 SUPPORT
73              
74             You can find documentation for this module with the perldoc command.
75              
76             perldoc Acme::kevinz
77              
78              
79             You can also look for information at:
80              
81             =over 4
82              
83             =item * RT: CPAN's request tracker (report bugs here)
84              
85             L
86              
87             =item * AnnoCPAN: Annotated CPAN documentation
88              
89             L
90              
91             =item * CPAN Ratings
92              
93             L
94              
95             =item * Search CPAN
96              
97             L
98              
99             =back
100              
101              
102             =head1 ACKNOWLEDGEMENTS
103              
104              
105             =head1 LICENSE AND COPYRIGHT
106              
107             Copyright 2012 E. Kevin Zembower.
108              
109             This program is free software; you can redistribute it and/or modify it
110             under the terms of either: the GNU General Public License as published
111             by the Free Software Foundation; or the Artistic License.
112              
113             See http://dev.perl.org/licenses/ for more information.
114              
115              
116             =cut
117              
118             1; # End of Acme::kevinz