Skip to content

Commit c6a3982

Browse files
committed
rm fuzz
1 parent a6f0074 commit c6a3982

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

text/0000-custom-test-frameworks.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,8 @@ struct AnnotatedItem
104104

105105
`items` here contains an `AnnotatedItem` for every item in the
106106
target crate that has one of the attributes declared in `attributes`
107-
along with attributes sharing the name of the framework (`test`, here).
107+
along with attributes sharing the name of the framework (`test`, here --
108+
the function must be named either `test` or `bench`).
108109

109110
The annotated function _must_ be named "test" for a test framework and
110111
"bench" for a bench framework. We currently do not support
@@ -184,12 +185,10 @@ under a new `[[testing.frameworks]]` section in their
184185

185186
```toml
186187
[[testing.frameworks]]
187-
provider = { rust-fuzz = "1.0" }
188+
provider = { quickcheck = "1.0" }
188189
```
189190

190-
This pulls in the framework named "fuzz", which uses the
191-
implementation provided by the `rust-fuzz` crate. When run, it will be
192-
applied to all files in the `fuzz` directory. By default, the following
191+
This pulls in the framework from the "quickcheck" crate. By default, the following
193192
framework is defined:
194193

195194
```toml

0 commit comments

Comments
 (0)