File Coverage

blib/lib/PerlMongers/Hannover.pm
Criterion Covered Total %
statement 13 13 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 1 1 100.0
total 19 19 100.0


line stmt bran cond sub pod time code
1             package PerlMongers::Hannover;
2              
3 1     1   66467 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK);
  1         2  
  1         63  
4              
5 1     1   5 use strict;
  1         1  
  1         23  
6 1     1   3 use warnings;
  1         6  
  1         46  
7             require Exporter;
8              
9             @ISA = qw(Exporter);
10             @EXPORT_OK = qw(info);
11              
12 1     1   8 use v5.10.1;
  1         2  
  1         51  
13              
14             sub info {
15 1     1 1 138827 system('perldoc', __PACKAGE__);
16             }
17              
18             1;
19              
20             __END__