set body io-handle as the PSGI spec requires, and handle the backcompat case
[catagits/Catalyst-Runtime.git] / t / lib / TestAppIndexDefault.pm
1 package TestAppIndexDefault;
2 use strict;
3 use warnings;
4 use TestLogger;
5 use Catalyst;
6
7 __PACKAGE__->log(TestLogger->new);
8
9 __PACKAGE__->setup;
10
11 1;