Use skip_all and done_testing in all tests
[catagits/Catalyst-Authentication-Store-LDAP.git] / Makefile.PL
CommitLineData
6149223d 1use inc::Module::Install 0.87;
f66d606b 2
3name('Catalyst-Authentication-Store-LDAP');
4abstract('Authenticate Users against LDAP Directories');
5author('Adam Jacob <holoway@cpan.org>');
6version_from('lib/Catalyst/Authentication/Store/LDAP.pm');
7license('perl');
8
9requires('Net::LDAP');
10requires( 'Catalyst::Plugin::Authentication' => '0.10003' );
11
12#requires('Catalyst::Model::LDAP');
714f0c16 13build_requires('Net::LDAP::Server::Test' => '0.07');
e385da71 14build_requires('Test::More', '0.88');
405489b5 15build_requires('Test::MockObject');
ff35d7cb 16build_requires('Test::Exception');
f66d606b 17
a6a8f29d 18resources repository => 'git://git.shadowcat.co.uk/catagits/Catalyst-Authentication-Store-LDAP.git';
1338323b 19
444169b0 20if ($Module::Install::AUTHOR) {
21 system("pod2text lib/Catalyst/Authentication/Store/LDAP.pm > README")
22 and die $!;
23}
24
25WriteAll;
f66d606b 26