new dist: MooseX::SimpleConfig
[gitmo/MooseX-SimpleConfig.git] / t / lib / MXSimpleConfigTest.pm
CommitLineData
33defd43 1package MXSimpleConfigTestBase;
2use Moose;
3
4has 'inherited_ro_attr' => (is => 'ro', isa => 'Str');
5
6no Moose;
71;
8
9package MXSimpleConfigTest;
10use Moose;
11extends 'MXSimpleConfigTestBase';
12with 'MooseX::SimpleConfig';
13
14has 'direct_attr' => (is => 'ro', isa => 'Int');
15
16has 'req_attr' => (is => 'rw', isa => 'Str', required => 1);
17
18no Moose;
191;