#let #pattern #assert #match #macro

no-std assert_let_bind

A convenience macro for writing pattern-matching tests

2 releases

0.1.1 Aug 15, 2022
0.1.0 Aug 15, 2022

#687 in Debugging

Download history 10/week @ 2023-12-07 46/week @ 2023-12-14 75/week @ 2023-12-21 8/week @ 2023-12-28 116/week @ 2024-01-04 76/week @ 2024-01-11 500/week @ 2024-01-18 1093/week @ 2024-01-25 1082/week @ 2024-02-01 882/week @ 2024-02-08 662/week @ 2024-02-15 644/week @ 2024-02-22 383/week @ 2024-02-29 328/week @ 2024-03-07 404/week @ 2024-03-14 307/week @ 2024-03-21

1,525 downloads per month
Used in 4 crates

MIT license

5KB

assert_let_bind

A convenience macro for writing pattern-matching tests in the Rust programming language.

The assert_let macro tests whether a value matches a given pattern, binding the pattern in the current scope if the match succeeds and causing a panic if the match fails.

(Strongly inspired by assert_matches)

use assert_let_bind::assert_let;

#[derive(Debug)]
enum Foo {
    A(i32, i32),
    B(i32),
}

let foo = Foo::A(3000, 2000);

assert_let!(Foo::A(x, y), foo);
assert_eq!(x + y, 5000);

Generally speaking, assert_let(pattern, expr) is roughly equivalent to:

let pattern = expr else { panic!("some panic message with {} {}", pattern, expr)};

Usage

This macro relies on let else, and thus only compiles in nightly Rust for now.

To add it to your project:

cargo add assert_let_bind

To add it only to your tests:

cargo add --dev assert_let_bind

License

This code is distributed under the terms of the MIT license. See LICENSE file for details.

Contributing

Contributions are unnecessary because this crate is already perfect.

In the unlikely eventuality that it isn't, issues and pull requests welcome.

No runtime deps