Skip to content

Instantly share code, notes, and snippets.

@alissonfpmorais
Created August 10, 2019 14:36
Show Gist options
  • Save alissonfpmorais/a86fef28cf9167c8768c665e10464d81 to your computer and use it in GitHub Desktop.
Save alissonfpmorais/a86fef28cf9167c8768c665e10464d81 to your computer and use it in GitHub Desktop.
fuzz4 :
Fuzzer a
-> Fuzzer b
-> Fuzzer c
-> Fuzzer d
-> String
-> (a -> b -> c -> d -> Expectation)
-> Test
fuzz4 fuzzerA fuzzerB fuzzerC fuzzerD description fn =
fuzz2
(Fuzz.tuple ( fuzzerA, fuzzerB ))
(Fuzz.tuple ( fuzzerC, fuzzerD ))
description
(\( a, b ) ( c, d ) ->
fn a b c d
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment