Updated test to properly handle a missing dependency
[gitmo/MooseX-AlwaysCoerce.git] / Makefile.PL
1 use inc::Module::Install;
2
3 name     'MooseX-AlwaysCoerce';
4 all_from 'lib/MooseX/AlwaysCoerce.pm';
5 author   'Rafael Kitover <rkitover@cpan.org>';
6 license  'perl';
7
8 test_requires 'Test::More' => '0.94';
9 test_requires 'Test::Exception';
10
11 requires 'Moose';
12 requires 'namespace::autoclean';
13 requires 'MooseX::ClassAttribute';
14
15 auto_provides;
16 auto_install;
17
18 resources repository =>
19     'git://github.com/rkitover/mx-alwayscoerce.git';
20
21 WriteAll;