Added a test that warnings do get thrown if appclass actions are used.
[catagits/Catalyst-Runtime.git] / t / deprecated_appclass_action_warnings.t
CommitLineData
fe3e42c3 1use strict;
2use warnings;
3
4use FindBin;
5use lib "$FindBin::Bin/lib";
6
7use Test::More;
8use Catalyst::Test 'DeprecatedActionsInAppClassTestApp';
9
10plan tests => 2;
11
12ok( my $response = request('http://localhost/foo'), 'Request' );
13ok( $response->is_success, 'Response Successful 2xx' );