File Coverage

blib/lib/Stewbeef/TestModule.pm
Criterion Covered Total %
statement 11 12 91.6
branch n/a
condition n/a
subroutine 4 5 80.0
pod 1 1 100.0
total 16 18 88.8


line stmt bran cond sub pod time code
1             package Stewbeef::TestModule;
2              
3 1     1   68067 use 5.006;
  1         3  
4 1     1   40 use strict;
  1         5  
  1         31  
5 1     1   16 use warnings;
  1         3  
  1         46  
6              
7 1     1   7 use base 'Exporter';
  1         1  
  1         164  
8             our @EXPORT = qw(
9             hello_world
10             );
11              
12             =head1 NAME
13              
14             Stewbeef::TestModule - Stewbeef's test module
15              
16             =head1 VERSION
17              
18             Version 0.01
19              
20             =cut
21              
22             our $VERSION = '0.01';
23              
24              
25             =head1 SYNOPSIS
26              
27             my $greeting = hello_world();
28              
29             =head1 EXPORT
30              
31             A list of functions that can be exported. You can delete this section
32             if you don't export anything, such as for a purely object-oriented module.
33              
34             =head1 SUBROUTINES/METHODS
35              
36             =head2 hello_world
37              
38             my $greeting = hello_world();
39              
40             Returns the string 'hello world'.
41              
42             =cut
43              
44 0     0 1   sub hello_world { 'hello world' }
45              
46             =head1 AUTHOR
47              
48             Michael Stewart, C<< >>
49              
50             =head1 BUGS
51              
52             Please report any bugs or feature requests to C, or through
53             the web interface at L. I will be notified, and then you'll
54             automatically be notified of progress on your bug as I make changes.
55              
56              
57             =head1 SUPPORT
58              
59             You can find documentation for this module with the perldoc command.
60              
61             perldoc Stewbeef::TestModule
62              
63              
64             You can also look for information at:
65              
66             =over 4
67              
68             =item * RT: CPAN's request tracker (report bugs here)
69              
70             L
71              
72             =item * AnnoCPAN: Annotated CPAN documentation
73              
74             L
75              
76             =item * CPAN Ratings
77              
78             L
79              
80             =item * Search CPAN
81              
82             L
83              
84             =back
85              
86              
87             =head1 ACKNOWLEDGEMENTS
88              
89              
90             =head1 LICENSE AND COPYRIGHT
91              
92             This software is Copyright (c) 2020 by Michael Stewart.
93              
94             This is free software, licensed under:
95              
96             The MIT (X11) License
97              
98              
99             =cut
100              
101             1;