delayed-assert 0.1.1

A simple library for delaying asserts.
Documentation
  • Coverage
  • 100%
    6 out of 6 items documented1 out of 6 items with examples
  • Size
  • Source code size: 18.33 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.28 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 10s Average build duration of successful builds.
  • all releases: 10s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • Elinvynia/delayed-assert
    1 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • Elinvynia

ci-badge docs-badge crate-version

delayed-assert

A simple library for delaying asserts.

Sample Usage

    use delayed_assert::DelayedAssert;

    ...

    let mut da = DelayedAssert::new();
    da.expect("something truthy");
    da.expect_equal(42, 42);
    da.assert_expectations();