File Coverage

blib/lib/ACME/ltharris.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


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