forked from tsucchi/Test-Mock-Net-FTP
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.PL
More file actions
executable file
·27 lines (21 loc) · 825 Bytes
/
Makefile.PL
File metadata and controls
executable file
·27 lines (21 loc) · 825 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
use inc::Module::Install;
name 'Test-Mock-Net-FTP';
author 'Takuya Tsuchida <tsucchi at cpan.org>';
license 'perl';
perl_version '5.008';
all_from 'lib/Test/Mock/Net/FTP.pm';
requires 'File::Slurp';
requires 'File::Path' => '2.07'; # for make_path/remove_tree
test_requires 'Test::More' => '0.94'; # want to use done_testing() and subtest
test_requires 'parent';
test_requires 'Capture::Tiny';
author_tests 'xt';
author_requires 'Test::Perl::Critic';
author_requires 'Test::Synopsis';
author_requires 'Test::Pod';
author_requires 'Test::Pod::Coverage';
author_requires 'Test::Module::Used' => '0.1.4';
author_requires 'Test::CheckManifest';
no_index 'directory' => 'tmp';
repository 'http://github.com/tsucchi/Test-Mock-Net-FTP';
WriteAll;