You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: tests/testsuite/install.rs
+37-47
Original file line number
Diff line number
Diff line change
@@ -244,53 +244,6 @@ fn missing() {
244
244
.run();
245
245
}
246
246
247
-
#[cargo_test]
248
-
#[cfg(not(target_os = "macos"))]
249
-
fnpkg_missing_cargo_toml(){
250
-
let p = project()
251
-
.file(
252
-
"cargo.toml",
253
-
r#"
254
-
[package]
255
-
name = "foo"
256
-
version = "0.1.0"
257
-
authors = []
258
-
"#,
259
-
)
260
-
.file("src/main.rs","fn main() {}")
261
-
.build();
262
-
263
-
cargo_process("install --path .")
264
-
.arg(p.root())
265
-
.with_status(101)
266
-
.with_stderr(
267
-
"\
268
-
[ERROR] `[CWD]` does not contain a Cargo.toml but found cargo.toml please try to rename it to Cargo.toml. --path must point to a directory containing a Cargo.toml file.
0 commit comments