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