Add author tests to Makefile.PL
[catagits/Catalyst-TraitFor-Request-ProxyBase.git] / t / lib / TestApp / Controller / Root.pm
1 package TestApp::Controller::Root;
2 use Moose;
3 use namespace::autoclean;
4
5 BEGIN { extends 'Catalyst::Controller'; }
6
7 __PACKAGE__->config(namespace => q{});
8
9 sub default : Action {
10     my ($self, $c) = @_;
11     $c->res->body( $c->req->base );
12     $c->res->content_type('text/plain');
13 }
14
15 __PACKAGE__->meta->make_immutable;
16