Skip to content
This repository has been archived by the owner on Dec 29, 2021. It is now read-only.

Releases: assert-rs/assert_cli

v0.6.0

08 May 19:14
Compare
Choose a tag to compare
  • Use active compilation profile (see #97)
  • Support byte-based predicates for stdout, stderr (see #87)
  • Fn predicates via the statisfies function (see #87)
  • Reduce deps by switching from skeptic to docmatic

v0.5.6

11 May 20:18
Compare
Choose a tag to compare

Yanked, see v0.6.0

v0.5.5

11 May 20:18
Compare
Choose a tag to compare

Failed upload to crates.io, see 0.6.0

v0.5.4: Release 0.5.4

12 Oct 22:33
Compare
Choose a tag to compare
  • Assert::with_env for setting environment variables

Release v0.5.3

06 Oct 22:08
Compare
Choose a tag to compare
  • Support writing to stdin

v0.5.2: Release 0.5.2

27 Sep 15:48
Compare
Choose a tag to compare
  • 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

24 Sep 03:37
Compare
Choose a tag to compare
  • Reduce unnecesary rebuilds due to skeptic.

v0.5.0: Release 0.5.0

23 Sep 20:45
Compare
Choose a tag to compare
  • 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.

v0.3.0

22 Aug 15:22
Compare
Choose a tag to compare
  • Return output information from assert calls.

v0.2.2

09 Aug 21:32
Compare
Choose a tag to compare
  • Added non-output versions of assert_cli functions and macro