File Coverage

blib/lib/MG.pm
Criterion Covered Total %
statement 8 8 100.0
branch n/a
condition n/a
subroutine 3 5 60.0
pod 2 2 100.0
total 13 15 86.6


line stmt bran cond sub pod time code
1             package MG;
2              
3 1     1   29860 use 5.006;
  1         5  
4 1     1   6 use strict;
  1         4  
  1         40  
5 1     1   5 use warnings FATAL => 'all';
  1         8  
  1         134  
6              
7             =head1 NAME
8              
9             MG - The great new MG!
10              
11             =head1 VERSION
12              
13             Version 0.01-TRIAL
14              
15             =cut
16              
17             our $VERSION = '0.01-TRIAL';
18              
19              
20             =head1 SYNOPSIS
21              
22             Quick summary of what the module does.
23              
24             Perhaps a little code snippet.
25              
26             use MG;
27              
28             my $foo = MG->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 function1
39              
40             =cut
41              
42       0 1   sub function1 {
43             }
44              
45             =head2 function2
46              
47             =cut
48              
49       0 1   sub function2 {
50             }
51              
52             =head1 AUTHOR
53              
54             Martin Gojowsky, C<< >>
55              
56             =head1 BUGS
57              
58             Please report any bugs or feature requests to C, or through
59             the web interface at L. I will be notified, and then you'll
60             automatically be notified of progress on your bug as I make changes.
61              
62              
63              
64              
65             =head1 SUPPORT
66              
67             You can find documentation for this module with the perldoc command.
68              
69             perldoc MG
70              
71              
72             You can also look for information at:
73              
74             =over 4
75              
76             =item * RT: CPAN's request tracker (report bugs here)
77              
78             L
79              
80             =item * AnnoCPAN: Annotated CPAN documentation
81              
82             L
83              
84             =item * CPAN Ratings
85              
86             L
87              
88             =item * Search CPAN
89              
90             L
91              
92             =back
93              
94              
95             =head1 ACKNOWLEDGEMENTS
96              
97              
98             =head1 LICENSE AND COPYRIGHT
99              
100             Copyright 2015 Martin Gojowsky.
101              
102             This program is distributed under the MIT (X11) License:
103             L
104              
105             Permission is hereby granted, free of charge, to any person
106             obtaining a copy of this software and associated documentation
107             files (the "Software"), to deal in the Software without
108             restriction, including without limitation the rights to use,
109             copy, modify, merge, publish, distribute, sublicense, and/or sell
110             copies of the Software, and to permit persons to whom the
111             Software is furnished to do so, subject to the following
112             conditions:
113              
114             The above copyright notice and this permission notice shall be
115             included in all copies or substantial portions of the Software.
116              
117             THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
118             EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
119             OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
120             NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
121             HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
122             WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
123             FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
124             OTHER DEALINGS IN THE SOFTWARE.
125              
126              
127             =cut
128              
129             1; # End of MG