Refactor tests
[gitmo/MooseX-SimpleConfig.git] / t / lib / MXDefaultMultipleConfigsTest.pm
CommitLineData
5b519d9c 1package MXDefaultMultipleConfigsTest;
b80c2ec1 2use Moose;
3with 'MooseX::SimpleConfig';
4
5use Path::Class::File;
6
7has 'direct_attr' => (is => 'ro', isa => 'Int');
8
9has 'req_attr' => (is => 'rw', isa => 'Str', required => 1);
10
11has '+configfile' => ( default => sub { [ 'test.yaml' ] } );
b80c2ec1 12
13no Moose;
141;