in reply to Re^4: How to capture and verify STDOUT of a Perl Module
in thread How to capture and verify STDOUT of a Perl Module
I know, but if system() runs something that produces output, I want it captured and can't:
Not so!!. Because system is not what you want to use to capture the output from a command use backticks or qx has it has been shown by others.
Then you can test your output if you want.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^6: How to capture and verify STDOUT of a Perl Module
by yuri123 (Novice) on Jul 30, 2013 at 19:43 UTC |