elaborate 2.2.0

Wrappers for standard library functions and types to produce more elaborate error messages
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use assert_cmd::Command;
use std::path::Path;

#[test]
fn ci() {
    let workspace_root = Path::new(env!("CARGO_MANIFEST_DIR")).parent().unwrap();

    Command::new("cargo")
        .current_dir(workspace_root)
        .args(["run", "--manifest-path", "ci/Cargo.toml"])
        .assert()
        .success();
}