Added a test that warnings do get thrown if appclass actions are used.
[catagits/Catalyst-Runtime.git] / t / lib / DeprecatedActionsInAppClassTestApp.pm
CommitLineData
fe3e42c3 1package DeprecatedActionsInAppClassTestApp;
2
3use strict;
4use warnings;
5use Catalyst;
6
7__PACKAGE__->setup;
8
9sub foo : Local {
10 my ($self, $c) = @_;
11 $c->res->body('OK');
12}
13
141;