visibility 0.1.1

Attribute to override the visibility of items (useful in conjunction with cfg_attr)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[test]
fn doctest_downstream_crate ()
{
    assert!(
        ::std::process::Command::new(env!("CARGO"))
            .current_dir("downstream_crate")
            .args(&["test", "--doc", "--features", "integration-tests"])
            .status()
            .unwrap()
            .success()
    );
}