Update docs, add simple tests
[catagits/Catalyst-View-Component-SubInclude.git] / t / ESITest / lib / ESITest / Controller / Root.pm
CommitLineData
eb99eb06 1package ESITest::Controller::Root;
2
3use strict;
4use warnings;
5use parent 'Catalyst::Controller';
6
7__PACKAGE__->config->{namespace} = '';
8
9sub index :Path :Args(0) {
10 my ( $self, $c ) = @_;
11}
12
13sub time_include : Local Args(0) {
14 my ( $self, $c ) = @_;
15 $c->stash->{current_time} = localtime();
16}
17
18sub end : ActionClass('RenderView') {}
19
201;