File Coverage

blib/lib/Acme/dwcarder.pm
Criterion Covered Total %
statement 9 14 64.2
branch n/a
condition n/a
subroutine 3 6 50.0
pod 3 3 100.0
total 15 23 65.2


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