0.03, configfile default stuff
[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;
11use Path::Class::File;
12extends 'MXDefaultConfigTestBase';
13with 'MooseX::SimpleConfig';
14
15has 'direct_attr' => (is => 'ro', isa => 'Int');
16
17has 'req_attr' => (is => 'rw', isa => 'Str', required => 1);
18
19has '+configfile' => ( default => 'test.yaml' );
20
21no Moose;
221;