File Coverage

blib/lib/Bracket/View/TT.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 Bracket::View::TT;
2              
3 1     1   24695 use strict;
  1         2  
  1         38  
4 1     1   5 use base 'Catalyst::View::TT';
  1         2  
  1         921  
5              
6             __PACKAGE__->config(
7             {
8             TEMPLATE_EXTENSION => '.tt',
9             PRE_PROCESS => 'lib/config/pre_process.tt',
10             WRAPPER => 'lib/site/wrapper.tt',
11             }
12             );
13              
14             =head1 NAME
15              
16             Bracket::View::TT - TT View for Bracket
17              
18             =head1 DESCRIPTION
19              
20             TT View for Bracket.
21              
22             =head1 AUTHOR
23              
24             =head1 SEE ALSO
25              
26             L<Bracket>
27              
28             Mateu X Hunter
29              
30             =head1 LICENSE
31              
32             This library is free software, you can redistribute it and/or modify
33             it under the same terms as Perl itself.
34              
35             =cut
36              
37             1;