testutils 0.0.12

Offers a range of utility functions, macros, and tools, such as `simple_benchmark()` and `dbg_ref!()`, `os_cmd::Runner`, designed for testing purposes.
Documentation
1
2
3
4
5
6
7
8
9
use std::io;

use testutils::os_cmd::{RunnableCommand, presets::CargoFmt};

#[ignore]
#[test]
fn fmt() -> io::Result<()> {
  CargoFmt::default().run()
}