Skip to content

Instantly share code, notes, and snippets.

@olbrichj
Created November 5, 2017 16:43
Show Gist options
  • Save olbrichj/06eba02974e02939919718daf04f6ca2 to your computer and use it in GitHub Desktop.
Save olbrichj/06eba02974e02939919718daf04f6ca2 to your computer and use it in GitHub Desktop.
extension Email: Arbitray {
public static var arbitrary: Gen<Email> {
return Gen.compose { comp in
return Email(comp.generate(localEmail), comp.generate(hostname), comp.generate(tld))
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment