change method call to subroutine call; Sel's docs are WRONG here
[catagits/Test-WWW-Selenium-Catalyst.git] / Makefile.PL
CommitLineData
4f6d213e 1use strict;
2use warnings;
3use inc::Module::Install;
4
5name('Test-WWW-Selenium-Catalyst');
6author('Jonathan Rockway <jrockway@cpan.org>');
7version_from('lib/Test/WWW/Selenium/Catalyst.pm');
8abstract_from('lib/Test/WWW/Selenium/Catalyst.pm');
9license('Perl');
10include('ExtUtils::AutoInstall');
11requires(
12 'Alien::SeleniumRC' => 0,
13 'Catalyst::Runtime' => 5.7001,
14 'Test::WWW::Selenium' => 0,
15 'Test::More' => 0,
1cdeb21f 16 'Catalyst::Utils' => 0,
17 );
4f6d213e 18auto_install();
19WriteAll();