new config attr that lets you override the default content type
[catagits/Catalyst-View-TT.git] / t / lib / TestApp / View / TT / AltContentType.pm
1 package TestApp::View::TT::AltContentType;
2
3 use strict;
4 use base 'Catalyst::View::TT';
5
6 __PACKAGE__->config(
7   TEMPLATE_EXTENSION => '.tt', 
8   content_type => 'text/plain',
9 );