okstd 0.2.0

The standard library that's ok
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[cfg(test)]
#[test]
fn debug() {
    let t = trybuild::TestCases::new();

    let cargo_manifest_dir = std::env::var("CARGO_MANIFEST_DIR").unwrap();
    let path = std::path::PathBuf::from(cargo_manifest_dir);
    let path = path.join("integration/src/main.rs");
    let path = path.as_path();
    t.pass(path);
}