in reply to Testing Question
The Test::More diag function is intended for printing out diagnostics during a test run (which I think is what you're after). Also, to output all the test names during a run you can execute
prove -vb t/instead of make test. That being said, I don't think I entirely understand your purpose here, as far as I'm concerned the test suite is supposed to consist of a list of simple checks, to make it easier to determine the cause (or at least locality) of a failure. Printing out debugging output during a normal test run doesn't seem particularly helpful to me (ok, if you're in the process of debugging a particular problem perhaps, but I'd remove that output once I've solved the problem)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Testing Question
by pileofrogs (Priest) on Feb 24, 2006 at 19:45 UTC | |
by tirwhan (Abbot) on Feb 24, 2006 at 19:56 UTC | |
by pileofrogs (Priest) on Feb 24, 2006 at 20:21 UTC |