I've got a few test scripts that I'd like to build into a nice suite that will ask for user-input much like what is seen when installing CPAN modules.
One of my test scripts needs some user-input, simply to either carry on or Ctrl+C out of it.
What options do I have? Currently I've put this check into the test script that requires the validation (by just reading<STDIN>, which doesn't get displayed unless the verbose flag is set when using 'prove'.
Should I be looking to TAP::Harness for this, and if so, could someone supply a bit of example code?