
App::Prove::State - State storage for the prove command.

Version 3.11

The prove command supports a --state option that instructs it to store persistent state across runs.
This module implements that state and the operations that may be performed on it.

# Re-run failed tests
$ prove --state=fail,save -rbv

newextensionGet or set the extension files must have in order to be considered tests. Defaults to '.t'.
apply_switchApply a list of switch options to the state.
lastRun in the same order as last time
failedRun only the failed tests from last time
passedRun only the passed tests from last time
allRun all tests in normal order
hotRun the tests that most recently failed first
todoRun the tests ordered by number of todos.
slowRun the tests in slowest to fastest order.
fastRun test tests in fastest to slowest order.
newRun the tests in newest to oldest order.
oldRun the tests in oldest to newest order.
saveSave the state on exit.
get_testsGiven a list of args get the names of tests that should run
observe_testStore the results of a test.
saveWrite the state to a file.
loadLoad the state from a file