File Coverage

blib/lib/Templ/Spec/Basic.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package Templ::Spec::Basic;
2 1     1   4 use base 'Templ::Spec';
  1         1  
  1         60  
3              
4 1     1   3 use strict;
  1         1  
  1         18  
5 1     1   3 use warnings;
  1         1  
  1         15  
6              
7 1     1   3 use Templ (); # Loads all modules, but doesn't import anything
  1         0  
  1         38  
8              
9             add Templ::Tag::Perl '?';
10             add Templ::Tag::Print '!';
11             add Templ::Tag::Comment '#';
12              
13             1;