mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 02:48:08 +01:00
cd03f21447
Remove backslashes.
31 lines
1.1 KiB
EmacsLisp
31 lines
1.1 KiB
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"
|
|
"Fred Dibna \\[extraordinaire\\] <fred@dibna.com>"))
|
|
(expected '("ДБ <db-uknot@stop.me.uk>"
|
|
"foo (at home) <foo@bar.com>"
|
|
"foo [at home] <foo@bar.com>"
|
|
"Foo Bar"
|
|
"Fred Dibna [extraordinaire] <fred@dibna.com>"))
|
|
(output (mapcar #'notmuch-show-clean-address input)))
|
|
(notmuch-test-expect-equal output expected)))
|