@@ -8,7 +8,10 @@ use test_utils::tempdir_with_tool_versions;
8
8
use toml_edit:: ImDocument ;
9
9
10
10
#[ test]
11
- #[ cfg_attr( feature = "skip_plugin_checks" , ignore = "Plugin checks skipped" ) ]
11
+ #[ cfg_attr(
12
+ not( feature = "test_for_multiple_scarb_versions" ) ,
13
+ ignore = "Multiple scarb versions must be installed"
14
+ ) ]
12
15
fn new_with_new_scarb ( ) {
13
16
let temp = tempdir_with_tool_versions ( ) . unwrap ( ) ;
14
17
runner ( & temp)
@@ -39,7 +42,10 @@ fn new_with_new_scarb() {
39
42
}
40
43
41
44
#[ test]
42
- #[ cfg_attr( feature = "skip_plugin_checks" , ignore = "Plugin checks skipped" ) ]
45
+ #[ cfg_attr(
46
+ not( feature = "test_for_multiple_scarb_versions" ) ,
47
+ ignore = "Multiple scarb versions must be installed"
48
+ ) ]
43
49
fn new_with_old_scarb ( ) {
44
50
let temp = tempdir_with_tool_versions ( ) . unwrap ( ) ;
45
51
Command :: new ( "asdf" )
@@ -75,7 +81,10 @@ fn new_with_old_scarb() {
75
81
}
76
82
77
83
#[ test]
78
- #[ cfg_attr( feature = "skip_plugin_checks" , ignore = "Plugin checks skipped" ) ]
84
+ #[ cfg_attr(
85
+ not( feature = "test_for_multiple_scarb_versions" ) ,
86
+ ignore = "Multiple scarb versions must be installed"
87
+ ) ]
79
88
fn new_scarb_new_macros ( ) {
80
89
let temp = tempdir_with_tool_versions ( ) . unwrap ( ) ;
81
90
runner ( & temp)
@@ -112,7 +121,10 @@ fn new_scarb_new_macros() {
112
121
}
113
122
114
123
#[ test]
115
- #[ cfg_attr( feature = "skip_plugin_checks" , ignore = "Plugin checks skipped" ) ]
124
+ #[ cfg_attr(
125
+ not( feature = "test_for_multiple_scarb_versions" ) ,
126
+ ignore = "Multiple scarb versions must be installed"
127
+ ) ]
116
128
fn new_scarb_deprecated_macros ( ) {
117
129
let temp = tempdir_with_tool_versions ( ) . unwrap ( ) ;
118
130
runner ( & temp)
@@ -157,7 +169,10 @@ fn new_scarb_deprecated_macros() {
157
169
}
158
170
159
171
#[ test]
160
- #[ cfg_attr( feature = "skip_plugin_checks" , ignore = "Plugin checks skipped" ) ]
172
+ #[ cfg_attr(
173
+ not( feature = "test_for_multiple_scarb_versions" ) ,
174
+ ignore = "Multiple scarb versions must be installed"
175
+ ) ]
161
176
fn new_scarb_old_macros ( ) {
162
177
let temp = tempdir_with_tool_versions ( ) . unwrap ( ) ;
163
178
runner ( & temp)
@@ -183,7 +198,10 @@ fn new_scarb_old_macros() {
183
198
}
184
199
185
200
#[ test]
186
- #[ cfg_attr( feature = "skip_plugin_checks" , ignore = "Plugin checks skipped" ) ]
201
+ #[ cfg_attr(
202
+ not( feature = "test_for_multiple_scarb_versions" ) ,
203
+ ignore = "Multiple scarb versions must be installed"
204
+ ) ]
187
205
fn old_scarb_new_macros ( ) {
188
206
let temp = tempdir_with_tool_versions ( ) . unwrap ( ) ;
189
207
Command :: new ( "asdf" )
@@ -217,7 +235,10 @@ fn old_scarb_new_macros() {
217
235
}
218
236
219
237
#[ test]
220
- #[ cfg_attr( feature = "skip_plugin_checks" , ignore = "Plugin checks skipped" ) ]
238
+ #[ cfg_attr(
239
+ not( feature = "test_for_multiple_scarb_versions" ) ,
240
+ ignore = "Multiple scarb versions must be installed"
241
+ ) ]
221
242
fn old_scarb_deprecated_macros ( ) {
222
243
let temp = tempdir_with_tool_versions ( ) . unwrap ( ) ;
223
244
Command :: new ( "asdf" )
@@ -264,7 +285,10 @@ fn old_scarb_deprecated_macros() {
264
285
}
265
286
266
287
#[ test]
267
- #[ cfg_attr( feature = "skip_plugin_checks" , ignore = "Plugin checks skipped" ) ]
288
+ #[ cfg_attr(
289
+ not( feature = "test_for_multiple_scarb_versions" ) ,
290
+ ignore = "Multiple scarb versions must be installed"
291
+ ) ]
268
292
fn old_scarb_old_macros ( ) {
269
293
let temp = tempdir_with_tool_versions ( ) . unwrap ( ) ;
270
294
Command :: new ( "asdf" )
0 commit comments