fix failing stemmaweb stub test
[scpubgit/stemmatology.git] / stemmaweb / lib / stemmaweb / View / TT.pm
1 package stemmaweb::View::TT;
2
3 use strict;
4 use warnings;
5
6 use base 'Catalyst::View::TT';
7
8 __PACKAGE__->config(
9     TEMPLATE_EXTENSION => '.tt',
10     ENCODING => 'utf-8',
11     render_die => 1,
12 );
13
14 =head1 NAME
15
16 stemmaweb::View::TT - TT View for stemmaweb
17
18 =head1 DESCRIPTION
19
20 TT View for stemmaweb.
21
22 =head1 SEE ALSO
23
24 L<stemmaweb>
25
26 =head1 AUTHOR
27
28 Tara L Andrews
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;