Add author tests to Makefile.PL
[catagits/Catalyst-TraitFor-Request-ProxyBase.git] / Makefile.PL
CommitLineData
30e98937 1use strict;
2use warnings;
3use inc::Module::Install 0.91;
1640822e 4
3bb11a1b 5BEGIN {
6 if ($Module::Install::AUTHOR) {
7 require Module::Install::AuthorTests;
8 }
9}
10
1640822e 11name 'Catalyst-TraitFor-Request-ProxyBase';
12all_from 'lib/Catalyst/TraitFor/Request/ProxyBase.pm';
13
ac304f06 14requires 'URI';
30e98937 15requires 'Moose';
16requires 'namespace::autoclean';
17
ac304f06 18test_requires 'Catalyst::Runtime' => '5.80007';
19test_requires 'CatalystX::RoleApplicator' => '0.005';
20test_requires 'Test::More';
21test_requires 'HTTP::Request::Common';
1640822e 22
2b591213 23resources repository => 'http://github.com/bobtfish/catalyst-traitfor-request-proxybase';
24license 'perl';
25
3bb11a1b 26author_tests('t/author');
27
1640822e 28WriteAll();
30e98937 29
ac304f06 30if ($Module::Install::AUTHOR) {
31 system("pod2text lib/Catalyst/TraitFor/Request/ProxyBase.pm > README")
32 and die;
33}
34