This repository has been archived by the owner on Dec 29, 2021. It is now read-only.
Releases: assert-rs/assert_cli
Releases · assert-rs/assert_cli
v0.6.0
v0.5.6
v0.5.5
v0.5.4: Release 0.5.4
Assert::with_env
for setting environment variables
Release v0.5.3
- Support writing to
stdin
v0.5.2: Release 0.5.2
- Show stdout/stderr on exit code failures
- Show expected/got strings for output assertions
- Show more context on failure.
v0.5.1: Release 0.5.1
- Reduce unnecesary rebuilds due to skeptic.
v0.5.0: Release 0.5.0
- Changing output asserts
.prints
->.stdout().contains
.prints_exactly
->.stdout().is
.prints_error
->.stderr().contains
.prints_error_exactly
->.stderr().is
- Add negative output assertions
.stdout().isnt
.stdout().doesnt_contain
- Output assertions are now anded together rather than replacing each
other.