I noticed that Test::Builder offers the ability to emit messages with s/^/# /mg, which is very nice. Can/should this capability be exposed via Test::Simple, Test::More, etc?
Sometimes it's nice to explain what to do about a test failure that may be an intermittent failure, or to warn that they should upgrade an optional prerequisite if one is too old, etc. Right now I just print "# ...\n", but that seems hackish when put in the same test scripts as the nice, shiny, new testing APIs. - Barrie