Turn off debug by default, you can say -d for the testapp script anyway and like...
[catagits/Catalyst-Engine-STOMP.git] / testapp / lib / StompTestApp.pm
CommitLineData
cb2c6d47 1package # Hide from PAUSE
2 StompTestApp;
0a663589 3use Moose;
cb2c6d47 4use Catalyst::Runtime '5.80003';
0a663589 5
6ac87378 6use Catalyst qw/
0a663589 7 ConfigLoader
8 /;
cb2c6d47 9use namespace::autoclean;
0a663589 10
11extends 'Catalyst';
12
68e73c9f 13__PACKAGE__->config( name => 'StompTestApp' );
cb2c6d47 14__PACKAGE__->setup;
0a663589 15__PACKAGE__->meta->make_immutable;
16