File Coverage

blib/lib/Acme/phillup.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::phillup;
2              
3 1     1   24011 use 5.006;
  1         4  
  1         39  
4 1     1   6 use strict;
  1         3  
  1         33  
5 1     1   5 use warnings;
  1         12  
  1         123  
6              
7             =head1 NAME
8              
9             Acme::phillup - Test module for YAPC::NA 2012
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             This is just a quickie module being created during a workshop at YAPC::NA 2012 by brian d foy
23              
24             =head1 EXPORT
25              
26             A list of functions that can be exported. You can delete this section
27             if you don't export anything, such as for a purely object-oriented module.
28              
29             =head1 SUBROUTINES/METHODS
30              
31             =head2 sum
32              
33             sum-thing
34              
35             =cut
36              
37             sub sum {
38 0     0 1   my $sum = 0;
39 0           foreach my $num (@_){
40 0           $sum += $num;
41             }
42             }
43              
44             =head2 function2
45              
46             =cut
47              
48 0     0 1   sub function2 {
49             }
50              
51             =head1 AUTHOR
52              
53             Phillip W. Upton, C<< >>
54              
55             =head1 BUGS
56              
57             Please report any bugs or feature requests to C, or through
58             the web interface at L. I will be notified, and then you'll
59             automatically be notified of progress on your bug as I make changes.
60              
61              
62              
63              
64             =head1 SUPPORT
65              
66             You can find documentation for this module with the perldoc command.
67              
68             perldoc Acme::phillup
69              
70              
71             You can also look for information at:
72              
73             =over 4
74              
75             =item * RT: CPAN's request tracker (report bugs here)
76              
77             L
78              
79             =item * AnnoCPAN: Annotated CPAN documentation
80              
81             L
82              
83             =item * CPAN Ratings
84              
85             L
86              
87             =item * Search CPAN
88              
89             L
90              
91             =back
92              
93              
94             =head1 ACKNOWLEDGEMENTS
95              
96              
97             =head1 LICENSE AND COPYRIGHT
98              
99             Copyright 2012 Phillip W. Upton.
100              
101             This program is free software; you can redistribute it and/or modify it
102             under the terms of either: the GNU General Public License as published
103             by the Free Software Foundation; or the Artistic License.
104              
105             See http://dev.perl.org/licenses/ for more information.
106              
107              
108             =cut
109              
110             1; # End of Acme::phillup