File Coverage

blib/lib/ACME/MBHall.pm
Criterion Covered Total %
statement 13 14 92.8
branch n/a
condition n/a
subroutine 4 5 80.0
pod 2 2 100.0
total 19 21 90.4


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