use M::I for test_requires for Cat. Also add the standard MANIFEST.SKIP.
[scpubgit/Test-Harness-Selenium.git] / Makefile.PL
1 use inc::Module::Install;
2
3 name           'Test-Harness-Selenium';
4 all_from       'lib/Test/Harness/Selenium.pm';
5 requires      'File::Find::Rule' => 0;
6 requires      'Socialtext::WikiFixture::Selenese' => 0;
7 requires      'HTML::TableExtract' => 0;
8 requires      'IO::All' => 0;
9 requires      'Alien::SeleniumRC' => 0;
10 requires      'Child' => 0;
11 requires      'Class::Method::Modifiers' => 0;
12 requires      'LWP::Simple' => 0;
13
14 # this is the right line but the toolchain doesn't seem to find it even though
15 # it's installed.
16 requires      'strictures' => 0;
17
18 test_requires 'Catalyst::Devel' => 0;
19 test_requires 'Catalyst::Runtime' => 0;
20
21 auto_install;
22 WriteAll;