Remove use of Catalyst::Base from the tests
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Controller / Priorities / loc_vs_index.pm
1 package TestApp::Controller::Priorities::loc_vs_index;
2
3 use strict;
4 use base 'Catalyst::Controller';
5
6 sub index :Private { $_[1]->res->body( 'index' ) }
7
8 1;