Fixes to work with Catalyst 5.9 engine.
[catagits/Test-WWW-Selenium-Catalyst.git] / Makefile.PL
1 use strict;
2 use warnings;
3 use inc::Module::Install 0.91;
4
5 name          'Test-WWW-Selenium-Catalyst';
6 perl_version  '5.008000';
7 all_from      'lib/Test/WWW/Selenium/Catalyst.pm';
8 license       'Perl';
9 requires(
10          'Alien::SeleniumRC' => 0,
11          'Catalyst::Runtime' => 5.7001,
12          'Test::WWW::Selenium' => 0,
13          'Test::More' => 0,
14          'Catalyst::Utils' => 0,
15 );
16
17 test_requires 'IPC::Cmd' => '0.42';
18 test_requires 'Test::More' => '0.92';
19
20 WriteAll();