Subject: | Remove dependency on Env.pm in t/04cgi.t |
Date: | Mon, 13 Jan 2014 18:29:16 -0700 |
To: | bug-HTTP-Server-Simple [...] rt.cpan.org |
From: | Warren Young <warren [...] etr-usa.com> |
This test currently uses the non-core module Env.pm, which isn't listed
as a dependency of HTTP::Server::Simple. This causes cpanm to fail to
install HTTP::Server::Simple on a minimal install of RHEL7 beta.
As far as I can tell, the test doesn't actually make use of Env, it just
says "use Env". The only environment variable used is referenced as
$ENV{$file}, which works on all Perls without the "use Env".
HTTP::Server::Simple::PSGI is a subclass of your ::CGI module, and its
author claims it doesn't uses any non-core modules. Because of this
"use Env", that's currently not true.