Hello,

I was told this might be a place to get information about
upcoming Test::Builder changes.

I'd like to know if and when Test::Builder will officially
support true plan at end.  The current version of
Test::Builder reports 1..$seen_tests instead of
1..$expected_tests.

I've had to resort to a hack like this in one of my modules
to get around the deficiency:

my $original_sub = \&Test::Builder::_ending;
*Test::Builder::_ending = sub {
    my $builder = shift;
    $builder->expected_tests( $builder->{Expected_Tests} );
    $builder->no_header( 1 );
    return $self_builder->$original_sub( @_ );
};

Which I would like to dump ASAP.

Thanks,
jdv

Reply via email to