Test::Builder currently maintains it's own information about whether the test is passing or not in $self->{Is_Passing} and it's set via $self->is_passing.
$self->is_passing should ask History.
Any point where TB would set $self->is_passing, that logic should move to History.
From: @schwern Date: Friday Nov 11, 2011 at 00:58 GMT Orig: https://github.com/Test-More/test-more/issues/191
Test::Builder currently maintains it's own information about whether the test is passing or not in
$self->{Is_Passing}
and it's set via$self->is_passing
.$self->is_passing
should ask History.$self->is_passing
, that logic should move to History.