rust/tests
David Wood e343521276 Add assert_eq! to special-cased macros
Allows for this form of assert_eq! macros:
```rust
assert_eq!(
    left.id, right.id,
    "IDs are not equal: {:?} {:?}",
    left, right
);
```

Also allows for assert! macros to have the format arguments split across
multiple lines even if the assert condition is not simple:
```rust
assert!(
    result >= 42,
    "The result must be at least 42: {:?}",
    result, result.code, context
);
```
2017-12-23 01:06:17 +00:00
..
config Remove where_density and where_layout options 2017-11-24 21:08:24 +13:00
coverage simplify tests 2016-04-05 02:45:39 +03:00
source Add assert_eq! to special-cased macros 2017-12-23 01:06:17 +00:00
target Add assert_eq! to special-cased macros 2017-12-23 01:06:17 +00:00
writemode Reformat tests 2017-06-13 14:42:54 +12:00
system.rs Add assert_eq! to special-cased macros 2017-12-23 01:06:17 +00:00