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