cargo/tests/testsuite/version.rs
2021-07-26 12:18:22 -07:00

44 lines
946 B
Rust

//! Tests for displaying the cargo version.
use cargo_test_support::project;
#[cargo_test]
fn simple() {
let p = project().build();
p.cargo("version")
.with_stdout(&format!("cargo {}\n", cargo::version()))
.run();
p.cargo("--version")
.with_stdout(&format!("cargo {}\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();
}