-
Notifications
You must be signed in to change notification settings - Fork 204
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Failing test case for case where parse_list() received Address object.
- Loading branch information
Showing
1 changed file
with
10 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -114,6 +114,16 @@ def test_addresslist_non_ascii_list_input(): | |
eq_('Os Wi <[email protected]>', lst[1].full_spec()) | ||
|
||
|
||
def test_addresslist_address_obj_list_input(): | ||
al = [EmailAddress(u'Aurélien Berger <[email protected]>'), | ||
UrlAddress('https://www.example.com')] | ||
lst = parse_list(al) | ||
eq_(2, len(lst)) | ||
eq_('=?utf-8?q?Aur=C3=A9lien_Berger?= <[email protected]>', | ||
lst[0].full_spec()) | ||
eq_('https://www.example.com', lst[1].full_spec()) | ||
|
||
|
||
def test_edge_cases(): | ||
email = EmailAddress('"foo.bar@"@example.com') | ||
eq_('"foo.bar@"@example.com', email.address) | ||
|