NAME

Test::Builder2::NoHistory - Store no history, just keep stats

SYNOPSIS

use Test::Builder2::NoHistory;

# This is a shared singleton object
my $history = Test::Builder2::NoHistory->singleton;
my $result  = Test::Builder2::Result->new_result( pass => 1 );

$history->accept_result( $result, $ec );
$history->is_passing;
$history->test_count;    # 1  we've seen a test
$history->results_count; # 0  we did not store a result
$history->results;       # [] still not there

DESCRIPTION

This object does not store results but manages the history of test stats.

API

All methods are the same from Test::Builder2::History.