Subject: | -T in test scripts causes test failures |
Hi,
More accurately, it's the deletion of the PATH that causes failures for
me in default_values.t, error.t, get.t, and set_values.t.
I'm on MS Windows, and WWW::Curl needs to load a dll that it finds via
the PATH. As those scripts stand at the moment, when WWW::Curl gets
loaded the PATH has been deleted and it's unable to find the needed dll.
Simplest solution (in those 4 scripts) is to:
use WWW::Curl;
*before* the BEGIN{} block that removes the PATH.
All tests then proceed nicely.
Cheers,
Rob