File Coverage

blib/lib/Acme/phillup.pm
Criterion Covered Total %
statement 9 11 81.8
branch n/a
condition n/a
subroutine 3 5 60.0
pod 2 2 100.0
total 14 18 77.7


line stmt bran cond sub pod time code
1             package Acme::phillup;
2              
3 1     1   27245 use 5.006;
  1         4  
  1         31  
4 1     1   6 use strict;
  1         1  
  1         32  
5 1     1   5 use warnings;
  1         6  
  1         83  
6              
7             =head1 NAME
8              
9             Acme::phillup - Test module for YAPC::NA 2012
10              
11             =head1 VERSION
12              
13             Version 0.02
14              
15             =cut
16              
17             our $VERSION = '0.02_02';
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 function1
32              
33             =cut
34              
35 0     0 1   sub function1 {
36             }
37              
38             =head2 function2
39              
40             =cut
41              
42 0     0 1   sub function2 {
43             }
44              
45             =head1 AUTHOR
46              
47             Phillip W. Upton, C<< >>
48              
49             =head1 BUGS
50              
51             Please report any bugs or feature requests to C, or through
52             the web interface at L. I will be notified, and then you'll
53             automatically be notified of progress on your bug as I make changes.
54              
55              
56              
57              
58             =head1 SUPPORT
59              
60             You can find documentation for this module with the perldoc command.
61              
62             perldoc Acme::phillup
63              
64              
65             You can also look for information at:
66              
67             =over 4
68              
69             =item * RT: CPAN's request tracker (report bugs here)
70              
71             L
72              
73             =item * AnnoCPAN: Annotated CPAN documentation
74              
75             L
76              
77             =item * CPAN Ratings
78              
79             L
80              
81             =item * Search CPAN
82              
83             L
84              
85             =back
86              
87              
88             =head1 ACKNOWLEDGEMENTS
89              
90              
91             =head1 LICENSE AND COPYRIGHT
92              
93             Copyright 2012 Phillip W. Upton.
94              
95             This program is free software; you can redistribute it and/or modify it
96             under the terms of either: the GNU General Public License as published
97             by the Free Software Foundation; or the Artistic License.
98              
99             See http://dev.perl.org/licenses/ for more information.
100              
101              
102             =cut
103              
104             1; # End of Acme::phillup