new test case
[catagits/Catalyst-View-Component-SubInclude.git] / t / ESITest / root / index.tt
CommitLineData
be2a019a 1SubInclude test: will include /time_include using default plugin [% c.view('TT').subinclude_plugin %]<br/>
3c5cb6d6 2[% subinclude('/time_include', { 'foo' => 'bar'} ) %]<br/>
3[% subinclude('/time_args', ['test'], { 'baz' => 'quux' }) %]<br/>
be2a019a 4
5<br/><br/>
6Test subinclude using specific plugins:<br/>
7[% subinclude_using('SubRequest', '/time_include', { 'plugin' => 'SubRequest'} ) %]<br/>
8[% subinclude_using('Visit', '/time_include', { 'plugin' => 'Visit'} ) %]<br/>
9[% subinclude_using('ESI', '/time_include', { 'plugin' => 'ESI'} ) %]<br/>
9208158e 10
11<br/><br/>
12[% subinclude_using('SubRequest', '/time_args', ['test'], { 'baz' => 'quux' }) %]<br/>