Re: TEST_VERBOSE

2002-09-04 Thread David Wheeler
On Wednesday, September 4, 2002, at 12:48 AM, Michael G Schwern wrote: TEST_VERBOSE, to Test::Harness, is not an environment variable. It's a make attribute used by MakeMaker to set $Test::Harness::verbose like you have above. make test TEST_VERBOSE=1 That's what the folks

Re: TEST_VERBOSE

2002-09-04 Thread Michael G Schwern
On Tue, Sep 03, 2002 at 07:08:25PM -0700, David Wheeler wrote: In fact, other than the Test::Class method names, TEST_VERBOSE adds nothing to the output -- not even diag messages. So I've added this to the script that runs my test scripts through Test::Harness: use Test::Harness qw

TEST_VERBOSE

2002-09-03 Thread David Wheeler
tests with TEST_VERBOSE=1, it doesn't do much -- just print out the names of the test methods being called. I thought it would provide more information about why tests fail and such. I mean, it prints relevant failure messages from Test::More, but not, for example, the names of the tests