Skip to content

Instantly share code, notes, and snippets.

@pmn
Created August 2, 2011 03:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pmn/1119554 to your computer and use it in GitHub Desktop.
Save pmn/1119554 to your computer and use it in GitHub Desktop.
(deftest valid-emails
(are [email] (vali/is-email? email)
"testword@domain.com"
"test+word@domain.com"
"test_word@domain.com"
"test'word@domain.com"
"test`word@domain.com"
"test#word@domain.com"
"test=word@domain.com"
"test|word@domain.com"
"testword@test.domain.com"
"t`e's.t@t.e.s.t"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment