File Coverage

blib/lib/Report/Porf.pm
Criterion Covered Total %
statement 16 17 94.1
branch n/a
condition n/a
subroutine 6 7 85.7
pod 2 2 100.0
total 24 26 92.3


line stmt bran cond sub pod time code
1             # Perl
2             #
3             # Class Report::Porf::Framework
4             #
5             # Perl Open Report Framework (Porf)
6             #
7             # Framework to create/configure Reports for any output format.
8             #
9             # Ralf Peine, Tue May 27 11:30:07 2014
10             #
11             # More documentation at the end of file
12             #------------------------------------------------------------------------------
13              
14             $VERSION = "2.001";
15              
16             package Report::Porf;
17              
18 1     1   46282 use strict;
  1         3  
  1         56  
19 1     1   10 use warnings;
  1         3  
  1         36  
20              
21 1     1   7 use Carp;
  1         7  
  1         96  
22              
23 1     1   689 use Report::Porf::Framework;
  1         4  
  1         40  
24              
25 1     1   12 use base qw(Exporter);
  1         2  
  1         222  
26              
27             our @EXPORT = qw();
28             our @EXPORT_OK = qw(auto_report create_report);
29             our %EXPORT_TAGS = (
30             all => [qw(auto_report create_report)],
31             );
32              
33             sub auto_report {
34 3     3 1 415 return Report::Porf::Framework::auto_report(@_);
35             }
36              
37             sub create_report {
38 0     0 1   die "Waits for implementation!";
39             }
40              
41              
42             1;
43             __END__