[Jifty-commit] r4214 - Test-WWW-Declare

jifty-commit at lists.jifty.org jifty-commit at lists.jifty.org
Tue Oct 9 13:52:09 EDT 2007


Author: audreyt
Date: Tue Oct  9 13:52:08 2007
New Revision: 4214

Modified:
   Test-WWW-Declare/Makefile.PL

Log:
* [Test-WWW-Declare] Makefile.PL: Work around Test::Builder's
  complaint about the need to preload Test::Tester.

Modified: Test-WWW-Declare/Makefile.PL
==============================================================================
--- Test-WWW-Declare/Makefile.PL	(original)
+++ Test-WWW-Declare/Makefile.PL	Tue Oct  9 13:52:08 2007
@@ -4,12 +4,15 @@
 license      'perl';
 version_from 'lib/Test/WWW/Declare.pm';
 
-requires 'Test::WWW::Mechanize';
-requires 'Test::Builder';
-requires 'Test::More';
-
-build_requires 'HTTP::Server::Simple::CGI';
 build_requires 'Test::Tester';
+build_requires 'HTTP::Server::Simple::CGI';
+
+# Work around Test::Builder's complaint about the need to preload Test::Tester.
+$INC{'Test/Tester.pm'} = __FILE__;
+
+requires 'Test::More';
+requires 'Test::Builder';
+requires 'Test::WWW::Mechanize';
 
 WriteAll;
 


More information about the Jifty-commit mailing list