File Coverage

blib/lib/Templ.pm
Criterion Covered Total %
statement 13 13 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 0 1 0.0
total 18 19 94.7


line stmt bran cond sub pod time code
1             package Templ;
2              
3 1     1   22610 use Exporter;
  1         2  
  1         62  
4             push @ISA, 'Exporter';
5             @EXPORT = qw(templ);
6              
7 1     1   5 use strict;
  1         2  
  1         27  
8 1     1   5 use warnings;
  1         6  
  1         43  
9              
10             our $VERSION = '0.02_01';
11              
12 1     1   512 use Templ::Template;
  1         5  
  1         84  
13 3     3 0 1150 sub templ (@) { Templ::Template->get( @_ ) }
14              
15             1;