the class used to create the TT object can now be customized
[catagits/Catalyst-View-TT.git] / t / lib / TestApp / View / TT / Classconfig.pm
diff --git a/t/lib/TestApp/View/TT/Classconfig.pm b/t/lib/TestApp/View/TT/Classconfig.pm
new file mode 100644 (file)
index 0000000..4352b5b
--- /dev/null
@@ -0,0 +1,12 @@
+package TestApp::View::TT::Classconfig;
+
+use strict;
+use base 'Catalyst::View::TT';
+
+use TestApp::Template::Any;
+
+__PACKAGE__->config(
+    CLASS              => 'TestApp::Template::Any',
+);
+
+1;