fish-shell/fish-rust/src/tests
Mahmoud Al-Qudsi d839fea748 Silence some more clippy lints
bool_assert_comparison is stupid, the reason they give is "it's shorter". Well,
`assert!(!foo)` is nowhere near as readable as `assert_eq!(foo, false)` because
of the ! noise from the macro.

Uninlined format args is a stupid lint that Rust actually walked back when they
made it an official warning because you still have to use a mix of inlined and
un-inlined format args (the latter of which won't complain) since only idents
can be inlined.
2023-03-05 00:54:17 -06:00
..
fd_monitor.rs Silence some more clippy lints 2023-03-05 00:54:17 -06:00
mod.rs Port fd_monitor tests to rust 2023-03-05 00:33:53 -06:00