Skip tests when java isn't installed/runable (IPC::Cmd)
[catagits/Test-WWW-Selenium-Catalyst.git] / Makefile.PL
CommitLineData
4f6d213e 1use strict;
2use warnings;
3use inc::Module::Install;
4
13984b27 5name 'Test-WWW-Selenium-Catalyst';
6perl_version '5.008000';
7all_from 'lib/Test/WWW/Selenium/Catalyst.pm';
8license 'Perl';
4f6d213e 9requires(
10 'Alien::SeleniumRC' => 0,
11 'Catalyst::Runtime' => 5.7001,
12 'Test::WWW::Selenium' => 0,
13 'Test::More' => 0,
1cdeb21f 14 'Catalyst::Utils' => 0,
13984b27 15);
8f552b3b 16
0744bdf6 17test_requires 'IPC::Cmd' => '0.42';
18
4f6d213e 19WriteAll();