File Coverage

blib/lib/Acme/Mandolion/Utils.pm
Criterion Covered Total %
statement 16 17 94.1
branch n/a
condition n/a
subroutine 5 6 83.3
pod 2 2 100.0
total 23 25 92.0


line stmt bran cond sub pod time code
1             package Acme::Mandolion::Utils;
2              
3 2     2   33164 use 5.006;
  2         8  
  2         85  
4 2     2   20 use strict;
  2         4  
  2         86  
5 2     2   12 use warnings FATAL => 'all';
  2         8  
  2         153  
6              
7             =head1 NAME
8              
9             Acme::Mandolion::Utils - The great new Acme::Mandolion::Utils!
10              
11             =head1 VERSION
12              
13             Version 0.01
14              
15             =cut
16              
17             our $VERSION = '0.01';
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::Mandolion::Utils;
27              
28             my $foo = Acme::Mandolion::Utils->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 )
39             Numerically sums the arguement list, then returns the result
40             =cut
41              
42             sub sum {
43 2     2   17 no warnings 'numeric';
  2         4  
  2         228  
44 2     2 1 1238 my $sum;
45 2         5 foreach (@_) { $sum += $_; }
  17         31  
46 2         11 return $sum;
47            
48             }
49              
50             =head2 function2
51              
52             =cut
53              
54 0     0 1   sub function2 {
55             }
56              
57             =head1 AUTHOR
58              
59             Julio de Leon, C<< >>
60              
61             =head1 BUGS
62              
63             Please report any bugs or feature requests to C, or through
64             the web interface at L. I will be notified, and then you'll
65             automatically be notified of progress on your bug as I make changes.
66              
67              
68              
69              
70             =head1 SUPPORT
71              
72             You can find documentation for this module with the perldoc command.
73              
74             perldoc Acme::Mandolion::Utils
75              
76              
77             You can also look for information at:
78              
79             =over 4
80              
81             =item * RT: CPAN's request tracker (report bugs here)
82              
83             L
84              
85             =item * AnnoCPAN: Annotated CPAN documentation
86              
87             L
88              
89             =item * CPAN Ratings
90              
91             L
92              
93             =item * Search CPAN
94              
95             L
96              
97             =back
98              
99              
100             =head1 ACKNOWLEDGEMENTS
101              
102              
103             =head1 LICENSE AND COPYRIGHT
104              
105             Copyright 2014 Julio de Leon.
106              
107             This program is free software; you can redistribute it and/or modify it
108             under the terms of the the Artistic License (2.0). You may obtain a
109             copy of the full license at:
110              
111             L
112              
113             Any use, modification, and distribution of the Standard or Modified
114             Versions is governed by this Artistic License. By using, modifying or
115             distributing the Package, you accept this license. Do not use, modify,
116             or distribute the Package, if you do not accept this license.
117              
118             If your Modified Version has been derived from a Modified Version made
119             by someone other than you, you are nevertheless required to ensure that
120             your Modified Version complies with the requirements of this license.
121              
122             This license does not grant you the right to use any trademark, service
123             mark, tradename, or logo of the Copyright Holder.
124              
125             This license includes the non-exclusive, worldwide, free-of-charge
126             patent license to make, have made, use, offer to sell, sell, import and
127             otherwise transfer the Package with respect to any patent claims
128             licensable by the Copyright Holder that are necessarily infringed by the
129             Package. If you institute patent litigation (including a cross-claim or
130             counterclaim) against any party alleging that the Package constitutes
131             direct or contributory patent infringement, then this Artistic License
132             to you shall terminate on the date that such litigation is filed.
133              
134             Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER
135             AND CONTRIBUTORS "AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES.
136             THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
137             PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY
138             YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT HOLDER OR
139             CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, OR
140             CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE OF THE PACKAGE,
141             EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
142              
143              
144             =cut
145              
146             1; # End of Acme::Mandolion::Utils