File Coverage

blib/lib/Text/Xslate/Bridge/Alloy.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::Alloy;
2              
3 2     2   2033999 use 5.008_001;
  2         6  
  2         69  
4 2     2   11 use strict;
  2         3  
  2         56  
5 2     2   15 use warnings;
  2         11  
  2         105  
6              
7             our $VERSION = '1.0001';
8              
9 2     2   756 use parent qw(Text::Xslate::Bridge);
  2         305  
  2         10  
10              
11 2     2   46382 use Template::Alloy;
  2         73034  
  2         13  
12 2     2   137 use Template::Alloy::VMethod qw($VOBJS);
  2         4  
  2         443  
13              
14             __PACKAGE__->bridge(
15             scalar => $VOBJS->{Text},
16             array => $VOBJS->{List},
17             hash => $VOBJS->{Hash},
18             );
19              
20             1;
21             __END__