File Coverage

blib/lib/Acme/KJAM.pm
Criterion Covered Total %
statement 9 13 69.2
branch n/a
condition n/a
subroutine 3 5 60.0
pod 2 2 100.0
total 14 20 70.0


line stmt bran cond sub pod time code
1             package Acme::KJAM;
2              
3 1     1   23701 use 5.006;
  1         4  
  1         38  
4 1     1   5 use strict;
  1         2  
  1         37  
5 1     1   5 use warnings;
  1         13  
  1         117  
6              
7             =head1 NAME
8              
9             Acme::KJAM - The great new Acme::KJAM!
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::KJAM;
27              
28             my $foo = Acme::KJAM->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 sum
39              
40             Returns the sum of the numbers
41              
42             =cut
43              
44             sub sum {
45 0     0 1   my $n = shift;
46 0           my $zero = 0;
47 0           return $zero + $n;
48             }
49              
50             =head2 function2
51              
52             =cut
53              
54 0     0 1   sub function2 {
55             }
56              
57             =head1 AUTHOR
58              
59             Keith Jamieson, C<< >>
60              
61             =head1 BUGS
62              
63             Please report any bugs or feature requests to C, or through
64             the web interface at L. I will be notified, and then you'll
65             automatically be notified of progress on your bug as I make changes.
66              
67              
68              
69              
70             =head1 SUPPORT
71              
72             You can find documentation for this module with the perldoc command.
73              
74             perldoc Acme::KJAM
75              
76              
77             You can also look for information at:
78              
79             =over 4
80              
81             =item * RT: CPAN's request tracker (report bugs here)
82              
83             L
84              
85             =item * AnnoCPAN: Annotated CPAN documentation
86              
87             L
88              
89             =item * CPAN Ratings
90              
91             L
92              
93             =item * Search CPAN
94              
95             L
96              
97             =back
98              
99              
100             =head1 ACKNOWLEDGEMENTS
101              
102              
103             =head1 LICENSE AND COPYRIGHT
104              
105             Copyright 2012 Keith Jamieson.
106              
107             This program is free software; you can redistribute it and/or modify it
108             under the terms of either: the GNU General Public License as published
109             by the Free Software Foundation; or the Artistic License.
110              
111             See http://dev.perl.org/licenses/ for more information.
112              
113              
114             =cut
115              
116             1; # End of Acme::KJAM