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