12 lines
181 B
Plaintext
12 lines
181 B
Plaintext
use aiken/fuzz
|
|
|
|
test prop_option_distribution(opt via fuzz.option(fuzz.int())) {
|
|
fuzz.label(
|
|
when opt is {
|
|
None -> @"None"
|
|
Some(..) -> @"Some"
|
|
},
|
|
)
|
|
True
|
|
}
|