You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
aya/test/integration-test/src
Tamir Duberstein 50b39a71ae
Replace matches with assert_matches
The matches crate has been archived now that `matches!` is in std.
However `assert_matches!` is still unstable in std, and the
assert_matches crate provides a more expressive form:

```
assert_matches!(foo, Ok(bar) => {
  assert_eq!(bar, baz);
});
```
2 years ago
..
tests Replace matches with assert_matches 2 years ago
lib.rs integration-test: build one binary instead of N 2 years ago
tests.rs integration-test: build one binary instead of N 2 years ago