File Coverage

blib/lib/Text/Xslate/Bridge/FillInForm/Lite.pm
Criterion Covered Total %
statement 18 18 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod n/a
total 24 24 100.0


line stmt bran cond sub pod time code
1             package Text::Xslate::Bridge::FillInForm::Lite;
2              
3 2     2   23724 use 5.008_001;
  2         11  
  2         80  
4 2     2   12 use strict;
  2         2  
  2         81  
5 2     2   10 use warnings;
  2         8  
  2         71  
6 2     2   11 use base qw(Text::Xslate::Bridge);
  2         3  
  2         1971  
7              
8 2     2   21847 use Text::Xslate qw(html_builder);
  2         4  
  2         114  
9 2     2   2015 use HTML::FillInForm::Lite qw(fillinform);
  2         12039  
  2         260  
10              
11             our $VERSION = '0.03';
12              
13             # copied from Text/Xslate/Manual/Cookbook.pod#Using_FillInForm
14             __PACKAGE__->bridge(
15             function => { fillinform => html_builder( \&fillinform ) } );
16              
17             1;
18             __END__