Fix mixed CRLFs
[catagits/Test-WWW-Selenium-Catalyst.git] / Makefile.PL
index be8095f..32ad153 100644 (file)
@@ -1,6 +1,6 @@
 use strict;
 use warnings;
-use inc::Module::Install;
+use inc::Module::Install 0.91;
 
 name          'Test-WWW-Selenium-Catalyst';
 perl_version  '5.008000';
@@ -14,10 +14,7 @@ requires(
         'Catalyst::Utils' => 0,
 );
 
-# Old vers of CPAN dont set the env var. safer to assume we are running than
-# ask about deps twice
-my $under_cpan = $ENV{PERL5_CPANPLUS_IS_RUNNING} || 
-                 $ENV{PERL5_CPAN_IS_RUNNING} || 
-                 do { require CPAN; $CPAN::VERSION < 1.92 };
-$under_cpan or auto_install();
+test_requires 'IPC::Cmd' => '0.42';
+test_requires 'Test::More' => '0.92';
+
 WriteAll();