File Coverage

blib/lib/Text/Handlebars/Symbol.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package Text::Handlebars::Symbol;
2             our $AUTHORITY = 'cpan:DOY';
3             $Text::Handlebars::Symbol::VERSION = '0.05';
4 12     12   61 use Mouse;
  12         20  
  12         70  
5              
6             extends 'Text::Xslate::Symbol';
7              
8             has is_helper => (
9             is => 'rw',
10             isa => 'Bool',
11             );
12              
13             has is_block_helper => (
14             is => 'rw',
15             isa => 'Bool',
16             );
17              
18             __PACKAGE__->meta->make_immutable;
19 12     12   4083 no Mouse;
  12         22  
  12         59  
20              
21             =for Pod::Coverage
22              
23             =cut
24              
25             1;