File Coverage

blib/lib/Acme/AbhiIsNot.pm
Criterion Covered Total %
statement 9 14 64.2
branch n/a
condition n/a
subroutine 3 5 60.0
pod 2 2 100.0
total 14 21 66.6


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