perltidy and some cleanups.
[blog.pm-common-perl-mods.git] / Common-Dispatcher-LangDetect / t / lib / TestApp.pm
blobe46a50b8bb69e3141b265138ede1c5208cfa8a3e
1 package TestApp;
2 use warnings;
3 use strict;
5 use Catalyst qw/ I18N /;
7 use Test::More;
9 sub default : Private {
10 my ( $self, $c ) = @_;
12 $c->res->body( $c->language );
15 __PACKAGE__->dispatcher_class( 'Common::Dispatcher::LangDetect' );
17 __PACKAGE__->config->{ 'languages' } = {
18 en => 'English',
19 ru => 'Русский'
22 __PACKAGE__->setup;