fwd/vendor/assert_matches/tests/selective_import1.rs
John Doty 9c435dc440 Vendor dependencies
Let's see how I like this workflow.
2022-12-19 08:38:22 -08:00

9 lines
144 B
Rust

#[macro_use(assert_matches)]
extern crate assert_matches;
#[test]
fn test_assert_succeed() {
let a = 42u32;
assert_matches!(a, 42);
}