Tests for the modules with a keep_stash option
[catagits/Catalyst-View-Component-SubInclude.git] / t / lib / KeepStash / View / TT.pm
CommitLineData
f78902ea 1package KeepStash::View::TT;
2use Moose;
3
4extends 'Catalyst::View::TT';
5with 'Catalyst::View::Component::SubInclude';
6
7__PACKAGE__->config(
8 TEMPLATE_EXTENSION => '.tt',
9 subinclude_plugin => 'SubRequest',
10 subinclude_plugin => 'Visit',
11 subinclude => {
12 'SubRequest' => {
13 keep_stash => 1
14 },
15 'Visit' => {
16 keep_stash => 1
17 }
18 },
19);
20
211;