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   70721 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK);
  1         3  
  1         93  
4              
5 1     1   7 use strict;
  1         2  
  1         42  
6 1     1   7 use warnings;
  1         7  
  1         73  
7             require Exporter;
8              
9             @ISA = qw(Exporter);
10             @EXPORT_OK = qw(info);
11              
12 1     1   13 use v5.10.1;
  1         3  
  1         85  
13              
14             sub info {
15 1     1 1 128619 system('perldoc', __PACKAGE__);
16             }
17              
18             1;
19              
20             __END__