Remove use of Catalyst::Base from the tests
[catagits/Catalyst-Runtime.git] / t / lib / TestAppMetaCompat / Action / UsesCAF.pm
CommitLineData
4556c26f 1package TestAppMetaCompat::Action::UsesCAF;
2
3use strict;
4
5use base qw/Catalyst::Action Class::Accessor::Fast/;
6__PACKAGE__->mk_accessors(qw/ foo /);
7
81;