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/edition.rs
+26-36
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,7 @@
1
1
//! Tests for edition setting.
2
2
3
-
#![allow(deprecated)]
4
-
5
3
use cargo::core::Edition;
6
-
use cargo_test_support::{basic_lib_manifest, project};
4
+
use cargo_test_support::{basic_lib_manifest, project, str};
7
5
8
6
#[cargo_test]
9
7
fnedition_works_for_build_script(){
@@ -66,21 +64,17 @@ fn edition_unstable_gated() {
66
64
67
65
p.cargo("check")
68
66
.with_status(101)
69
-
.with_stderr(&format!(
67
+
.with_stderr_data(format!(
70
68
"\
71
-
[ERROR] failed to parse manifest at `[..]/foo/Cargo.toml`
69
+
[ERROR] failed to parse manifest at `[ROOT]/foo/Cargo.toml`
72
70
73
71
Caused by:
74
72
feature `edition{next}` is required
75
73
76
-
The package requires the Cargo feature called `edition{next}`, \
77
-
but that feature is not stabilized in this version of Cargo (1.[..]).
74
+
The package requires the Cargo feature called `edition{next}`, but that feature is not stabilized in this version of Cargo (1.[..]).
78
75
Consider trying a newer version of Cargo (this may require the nightly release).
79
-
See https://doc.rust-lang.org/nightly/cargo/reference/unstable.html#edition-{next} \
80
-
for more information about the status of this feature.
81
-
",
82
-
next = next
83
-
))
76
+
See https://doc.rust-lang.org/nightly/cargo/reference/unstable.html#edition-{next} for more information about the status of this feature.
77
+
"))
84
78
.run();
85
79
}
86
80
@@ -116,12 +110,11 @@ fn edition_unstable() {
116
110
117
111
p.cargo("check")
118
112
.masquerade_as_nightly_cargo(&["always_nightly"])
119
-
.with_stderr(
120
-
"\
121
-
[CHECKING] foo [..]
122
-
[FINISHED] [..]
123
-
",
124
-
)
113
+
.with_stderr_data(str![[r#"
114
+
[CHECKING] foo v0.1.0 ([ROOT]/foo)
115
+
[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
0 commit comments