cargo/tests/testsuite/version.rs
Jethro Beekman 0e0d968825 Update #[test] attribute on all tests in the testsuite
sed -i 's/^#\[test\]/#[cargo_test]/' $(rg -l '^#\[test\]')

Manual fixes:
* proc_macro::proc_macro_doctest
2019-06-07 12:41:26 -07:00

43 lines
884 B
Rust

use crate::support::project;
use cargo;
#[cargo_test]
fn simple() {
let p = project().build();
p.cargo("version")
.with_stdout(&format!("{}\n", cargo::version()))
.run();
p.cargo("--version")
.with_stdout(&format!("{}\n", cargo::version()))
.run();
}
#[cargo_test]
#[cfg_attr(target_os = "windows", ignore)]
fn version_works_without_rustc() {
let p = project().build();
p.cargo("version").env("PATH", "").run();
}
#[cargo_test]
fn version_works_with_bad_config() {
let p = project().file(".cargo/config", "this is not toml").build();
p.cargo("version").run();
}
#[cargo_test]
fn version_works_with_bad_target_dir() {
let p = project()
.file(
".cargo/config",
r#"
[build]
target-dir = 4
"#,
)
.build();
p.cargo("version").run();
}