File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -169,7 +169,7 @@ This section works like this:
169
169
``` rust
170
170
[testing . framework]
171
171
name = " bench" # mandatory
172
- folders = [" bench/ " ]
172
+ folders = [" bench" ]
173
173
lib = true # true by default
174
174
single - target = true # false by default
175
175
```
@@ -190,7 +190,7 @@ under a new `[[testing.frameworks]]` section in their
190
190
[[testing .frameworks ]]
191
191
provider = { rust-fuzz = " 1.0" }
192
192
name = " fuzz" # optional, overrides `name` on framework crate
193
- folders = [" fuzz/ " ] # optional, overrides `folders` on framework crate
193
+ folders = [" fuzz" ] # optional, overrides `folders` on framework crate
194
194
lib = false # optional, overrides `lib` on framework crate
195
195
```
196
196
@@ -203,17 +203,17 @@ frameworks are defined:
203
203
[[testing .frameworks ]]
204
204
name = " test"
205
205
provider = { test = " 1.0" }
206
- folders = [" tests/ " ]
206
+ folders = [" tests" ]
207
207
208
208
[[testing .frameworks ]]
209
209
name = " bench"
210
210
provider = { ?? = "1.0" }
211
- folders = [" benches/ " ]
211
+ folders = [" benches" ]
212
212
213
213
[[testing .frameworks ]]
214
214
name = " example"
215
215
provider = { ?? = "1.0" }
216
- folders = [" examples/ " ]
216
+ folders = [" examples" ]
217
217
```
218
218
219
219
Whereas having two frameworks of the same name is an error, if you define
You can’t perform that action at this time.
0 commit comments