File Coverage

blib/lib/Acme/MyFirstModule/WWILLIS.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 4 50.0
pod 2 2 100.0
total 10 12 83.3


line stmt bran cond sub pod time code
1             package Acme::MyFirstModule::WWILLIS;
2              
3 1     1   68953 use warnings;
  1         3  
  1         34  
4 1     1   5 use strict;
  1         2  
  1         78  
5              
6             =head1 NAME
7              
8             Acme::MyFirstModule::WWILLIS - The great old Acme::MyFirstModule::WWILLIS!
9              
10             =head1 VERSION
11              
12             Version 0.03
13              
14             =cut
15             our $VERSION = '0.03';
16              
17             =head1 SYNOPSIS
18              
19             Quick summary of what the module does.
20              
21             Perhaps a little code snippet.
22              
23             use Acme::MyFirstModule::WWILLIS;
24              
25             my $foo = Acme::MyFirstModule::WWILLIS->new();
26             ...
27              
28             =head1 EXPORT
29              
30             A list of functions that can be exported. You can delete this section
31             if you don't export anything, such as for a purely object-oriented module.
32              
33             =head1 FUNCTIONS
34              
35             =head2 function1
36              
37             =cut
38              
39       0 1   sub function1 {
40             }
41              
42             =head2 function2
43              
44             =cut
45              
46       0 1   sub function2 {
47             }
48              
49             =head1 AUTHOR
50              
51             Will Willis, C<< >>
52              
53             =head1 BUGS
54              
55             Yes, very likely.
56              
57             =head1 SUPPORT
58              
59             You can find documentation for this module with the perldoc command.
60              
61             perldoc Acme::MyFirstModule::WWILLIS
62              
63             You can also look for information at:
64              
65             =over 4
66              
67             =item * AnnoCPAN: Annotated CPAN documentation
68              
69             L
70              
71             =item * CPAN Ratings
72              
73             L
74              
75             =item * RT: CPAN's request tracker
76              
77             L
78              
79             =item * Search CPAN
80              
81             L
82              
83             =back
84              
85             =head1 ACKNOWLEDGEMENTS
86              
87             =head1 COPYRIGHT & LICENSE
88              
89             Copyright 2023 Will Willis, all rights reserved.
90              
91             This program is free software; you can redistribute it and/or modify it
92             under the same terms as Perl itself.
93              
94             =cut
95              
96             1; # End of Acme::MyFirstModule::WWILLIS