Checking in changes prior to tagging of version 1.100. Changelog diff is:
[catagits/Catalyst-View-ContentNegotiation-XHTML.git] / t / lib / TestApp / Controller / Root.pm
CommitLineData
8a28782a 1package # Hide from PAUSE
2 TestApp::Controller::Root;
e2e866b4 3use strict;
4use warnings;
5
6__PACKAGE__->config(namespace => q{});
7
8use base 'Catalyst::Controller';
9
10sub main :Path { }
11
12sub nothtml :Local {
13 my ($self, $c) = @_;
14 $c->res->content_type('application/json');
15}
16
17sub end : ActionClass('RenderView') {}
18
191;