diff options
-rw-r--r-- | tests/email.scm | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/tests/email.scm b/tests/email.scm index acf1b8a..a2b6361 100644 --- a/tests/email.scm +++ b/tests/email.scm @@ -1,6 +1,6 @@ ;;; guile-email --- Guile email parser ;;; Copyright © 2017 Ricardo Wurmus <rekado@elephly.net> -;;; Copyright © 2018, 2019 Arun Isaac <arunisaac@systemreboot.net> +;;; Copyright © 2018, 2019, 2020 Arun Isaac <arunisaac@systemreboot.net> ;;; ;;; This file was adapted from guile-debbugs and is part of guile-email. ;;; @@ -410,6 +410,12 @@ copyright =A9") (parse-email-address "foo@example.org (Foo)") '((name . "Foo") (address . "foo@example.org"))) +(test-expect-fail "parse email addresses with period in name") + +(test-equal "parse email addresses with period in name" + (parse-email-address "Foo P. Bar <foo@example.com>") + '((name . "Foo P. Bar") (address . "foo@example.com"))) + (test-equal "decode MIME encoded word: wikipedia example" ((module-ref (resolve-module '(email email)) 'decode-mime-encoded-word) |