fix configfile usage as per updated MXCFF documentation
[gitmo/MooseX-SimpleConfig.git] / t / lib / MXDefaultConfigTest.pm
CommitLineData
a96520dd 1package MXDefaultConfigTestBase;
2use Moose;
3
4has 'inherited_ro_attr' => (is => 'ro', isa => 'Str');
5
6no Moose;
71;
8
9package MXDefaultConfigTest;
10use Moose;
a96520dd 11extends 'MXDefaultConfigTestBase';
12with 'MooseX::SimpleConfig';
13
14has 'direct_attr' => (is => 'ro', isa => 'Int');
15
16has 'req_attr' => (is => 'rw', isa => 'Str', required => 1);
17
b565b43c 18around 'configfile' => sub { 'test.yaml' };
a96520dd 19
20no Moose;
211;