in reply to Redirecting the output of Test::More
You could try redirecting the STDERR output by reassigning it using open.
For example, the following code will redirect STDERR to STDOUT:
open (STDERR, ">&STDOUT") or die 'Can not redirect STDERR';For more information, try consulting the documentation in
perldoc -f open
|
|---|