@@ -6,7 +6,7 @@ use cargo_test_support::str;
6
6
use cargo_test_support:: { basic_manifest, project} ;
7
7
8
8
#[ cargo_test]
9
- fn invalid1 ( ) {
9
+ fn feature_activates_missing_feature ( ) {
10
10
let p = project ( )
11
11
. file (
12
12
"Cargo.toml" ,
@@ -120,7 +120,7 @@ foo v0.0.1 ([ROOT]/foo) [bar,baz]
120
120
}
121
121
122
122
#[ cargo_test]
123
- fn invalid3 ( ) {
123
+ fn feature_activates_required_dependency ( ) {
124
124
let p = project ( )
125
125
. file (
126
126
"Cargo.toml" ,
@@ -155,7 +155,7 @@ Caused by:
155
155
}
156
156
157
157
#[ cargo_test]
158
- fn invalid4 ( ) {
158
+ fn dependency_activates_missing_feature ( ) {
159
159
let p = project ( )
160
160
. file (
161
161
"Cargo.toml" ,
@@ -203,7 +203,7 @@ failed to select a version for `bar` which could resolve this conflict
203
203
}
204
204
205
205
#[ cargo_test]
206
- fn invalid5 ( ) {
206
+ fn optional_dev_dependency ( ) {
207
207
let p = project ( )
208
208
. file (
209
209
"Cargo.toml" ,
@@ -235,7 +235,7 @@ Caused by:
235
235
}
236
236
237
237
#[ cargo_test]
238
- fn invalid6 ( ) {
238
+ fn feature_activates_missing_dep_feature ( ) {
239
239
let p = project ( )
240
240
. file (
241
241
"Cargo.toml" ,
@@ -269,7 +269,7 @@ fn invalid6() {
269
269
}
270
270
271
271
#[ cargo_test]
272
- fn invalid7 ( ) {
272
+ fn feature_activates_feature_inside_feature ( ) {
273
273
let p = project ( )
274
274
. file (
275
275
"Cargo.toml" ,
@@ -304,7 +304,7 @@ fn invalid7() {
304
304
}
305
305
306
306
#[ cargo_test]
307
- fn invalid8 ( ) {
307
+ fn dependency_activates_dep_feature ( ) {
308
308
let p = project ( )
309
309
. file (
310
310
"Cargo.toml" ,
@@ -339,7 +339,7 @@ Caused by:
339
339
}
340
340
341
341
#[ cargo_test]
342
- fn invalid9 ( ) {
342
+ fn cli_activates_required_dependency ( ) {
343
343
let p = project ( )
344
344
. file (
345
345
"Cargo.toml" ,
@@ -370,7 +370,7 @@ fn invalid9() {
370
370
}
371
371
372
372
#[ cargo_test]
373
- fn invalid10 ( ) {
373
+ fn dependency_activates_required_dependency ( ) {
374
374
let p = project ( )
375
375
. file (
376
376
"Cargo.toml" ,
0 commit comments