nim-drchaos/tests/toptions.nim

7 lines
139 B
Nim
Raw Normal View History

2022-08-25 20:18:38 +00:00
import drchaos, std/options
func fuzzTarget(x: Option[string]) =
doAssert not x.isSome or x.get != "Space!"
defaultMutator(fuzzTarget)