File Coverage

blib/lib/Acme/ALEXEY/Utils.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 1 1 100.0
total 21 21 100.0


line stmt bran cond sub pod time code
1             package Acme::ALEXEY::Utils;
2              
3 2     2   25800 use 5.006;
  2         5  
  2         65  
4 2     2   14 use strict;
  2         4  
  2         47  
5 2     2   6 use warnings FATAL => 'all';
  2         6  
  2         107  
6 2     2   7 use Exporter ('import');
  2         2  
  2         163  
7             our @EXPORT = qw(sum);
8             =head1 NAME
9              
10             Acme::ALEXEY::Utils - The great new Acme::ALEXEY::Utils!
11              
12             =head1 VERSION
13              
14             Version 0.01
15              
16             =cut
17              
18             our $VERSION = '0.01';
19              
20              
21             =head1 SYNOPSIS
22              
23             Quick summary of what the module does.
24              
25             Perhaps a little code snippet.
26              
27             use Acme::ALEXEY::Utils;
28              
29             my $foo = Acme::ALEXEY::Utils->new();
30             ...
31              
32             =head1 EXPORT
33              
34             A list of functions that can be exported. You can delete this section
35             if you don't export anything, such as for a purely object-oriented module.
36              
37             =head1 SUBROUTINES/METHODS
38              
39             =head2 sum
40              
41             =cut
42              
43             sub sum {
44 3     3 1 260 my $sum;
45 3         17 $sum += $_ for @_;
46 2         6 $sum;
47             }
48              
49             =head1 AUTHOR
50              
51             Alexey Morar , C<< >>
52              
53             =head1 BUGS
54              
55             Please report any bugs or feature requests to C, or through
56             the web interface at L. I will be notified, and then you'll
57             automatically be notified of progress on your bug as I make changes.
58              
59              
60              
61              
62             =head1 SUPPORT
63              
64             You can find documentation for this module with the perldoc command.
65              
66             perldoc Acme::ALEXEY::Utils
67              
68              
69             You can also look for information at:
70              
71             =over 4
72              
73             =item * RT: CPAN's request tracker (report bugs here)
74              
75             L
76              
77             =item * AnnoCPAN: Annotated CPAN documentation
78              
79             L
80              
81             =item * CPAN Ratings
82              
83             L
84              
85             =item * Search CPAN
86              
87             L
88              
89             =back
90              
91              
92             =head1 ACKNOWLEDGEMENTS
93              
94              
95             =head1 LICENSE AND COPYRIGHT
96              
97             Copyright 2015 Alexey Morar .
98              
99             This program is released under the following license: artistic_2
100              
101              
102             =cut
103              
104             1; # End of Acme::ALEXEY::Utils