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   22471 use Exporter;
  1         3  
  1         61  
4             push @ISA, 'Exporter';
5             @EXPORT = qw(templ);
6              
7 1     1   5 use strict;
  1         2  
  1         28  
8 1     1   5 use warnings;
  1         5  
  1         44  
9              
10             our $VERSION = '0.03_01';
11              
12 1     1   515 use Templ::Template;
  1         5  
  1         82  
13 3     3 0 956 sub templ (@) { Templ::Template->get( @_ ) }
14              
15             1;