mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 02:48:08 +01:00
29 lines
978 B
EmacsLisp
29 lines
978 B
EmacsLisp
(defun notmuch-test-address-cleaning-1 ()
|
|
(notmuch-test-expect-equal (notmuch-show-clean-address "dme@dme.org")
|
|
"dme@dme.org"))
|
|
|
|
(defun notmuch-test-address-cleaning-2 ()
|
|
(let* ((input '("foo@bar.com"
|
|
"<foo@bar.com>"
|
|
"Foo Bar <foo@bar.com>"
|
|
"foo@bar.com <foo@bar.com>"
|
|
"\"Foo Bar\" <foo@bar.com>"))
|
|
(expected '("foo@bar.com"
|
|
"foo@bar.com"
|
|
"Foo Bar <foo@bar.com>"
|
|
"foo@bar.com"
|
|
"Foo Bar <foo@bar.com>"))
|
|
(output (mapcar #'notmuch-show-clean-address input)))
|
|
(notmuch-test-expect-equal output expected)))
|
|
|
|
(defun notmuch-test-address-cleaning-3 ()
|
|
(let* ((input '("ДБ <db-uknot@stop.me.uk>"
|
|
"foo (at home) <foo@bar.com>"
|
|
"foo [at home] <foo@bar.com>"
|
|
"Foo Bar"))
|
|
(expected '("ДБ <db-uknot@stop.me.uk>"
|
|
"foo (at home) <foo@bar.com>"
|
|
"foo [at home] <foo@bar.com>"
|
|
"Foo Bar"))
|
|
(output (mapcar #'notmuch-show-clean-address input)))
|
|
(notmuch-test-expect-equal output expected)))
|