Unicode plugin: import tests and update current ones
[catagits/Catalyst-Runtime.git] / t / lib / TestApp2 / Controller / Root.pm
CommitLineData
55046410 1package TestApp2::Controller::Root;
2use strict;
3use warnings;
4use utf8;
5
6__PACKAGE__->config(namespace => q{});
7
8use base 'Catalyst::Controller';
9
10# your actions replace this one
11sub main :Path('') {
12 $_[1]->res->body('<h1>It works</h1>');
13 $_[1]->res->content_type('text/html');
14}
15
161;