- Added V::TT fix-up from zby
[catagits/Catalyst-View-TT.git] / t / lib / TestApp / View / TT / Includepath3.pm
diff --git a/t/lib/TestApp/View/TT/Includepath3.pm b/t/lib/TestApp/View/TT/Includepath3.pm
new file mode 100644 (file)
index 0000000..ebadc34
--- /dev/null
@@ -0,0 +1,17 @@
+package TestApp::View::TT::Includepath3;
+
+use FindBin;
+use Path::Class;
+use strict;
+use base 'Catalyst::View::TT';
+
+our @include_path;
+my $includepath = dir($FindBin::Bin, '/lib/TestApp/root/test_include_path');
+__PACKAGE__->config(
+    PRE_CHOMP          => 1,
+    POST_CHOMP         => 1,
+    TEMPLATE_EXTENSION => '.tt',
+    INCLUDE_PATH        => \@include_path,
+);
+
+1;