Skip Menu |

This queue is for tickets about the Mail-Box CPAN distribution.

Report information
The Basics
Id: 30613
Status: resolved
Priority: 0/
Queue: Mail-Box

People
Owner: Nobody in particular
Requestors: andy [...] hexten.net
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 2.076
Fixed in: (no value)



Subject: We broke your tests
Hi Mark, I'm afraid we changed the interface to TAP::Harness slightly. The separate verbose, quiet and really_quiet options turned into a single 'verbosity' setting. Sorry about that. Way to reward early adopters, eh? :) I'm attaching a patch that fixes your test.pl.
Subject: mail-box-andya.patch
--- test.pl.orig 2007-11-09 13:57:52.000000000 +0000 +++ test.pl 2007-11-09 13:58:16.000000000 +0000 @@ -187,7 +187,7 @@ return 1 unless @files; # cannot use $harness->runtests() because it always shows summary - my $harness = TAP::Harness->new( {verbose => $verbose} ); + my $harness = TAP::Harness->new( {verbosity => ($verbose ? 1 : 0)} ); my $aggregate = TAP::Parser::Aggregator->new; $harness->aggregate_tests($aggregate, @files); not $aggregate->has_problems;
That's not nice! I have released a new version of my module