diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_account.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/test_account.py b/tests/test_account.py index 240abca..2716ad1 100644 --- a/tests/test_account.py +++ b/tests/test_account.py | |||
@@ -92,3 +92,23 @@ def test_account_update_credentials(api): | |||
92 | header = image, | 92 | header = image, |
93 | header_mime_type = "image/jpeg") | 93 | header_mime_type = "image/jpeg") |
94 | assert account | 94 | assert account |
95 | |||
96 | @pytest.mark.vcr(match_on=['path']) | ||
97 | def test_account_update_credentials_no_header(api): | ||
98 | account = api.account_update_credentials( | ||
99 | display_name='John Lennon', | ||
100 | note='I walk funny', | ||
101 | avatar = "tests/image.jpg") | ||
102 | assert account | ||
103 | |||
104 | @pytest.mark.vcr(match_on=['path']) | ||
105 | def test_account_update_credentials_no_avatar(api): | ||
106 | with open('tests/image.jpg', 'rb') as f: | ||
107 | image = f.read() | ||
108 | |||
109 | account = api.account_update_credentials( | ||
110 | display_name='John Lennon', | ||
111 | note='I walk funny', | ||
112 | header = image, | ||
113 | header_mime_type = "image/jpeg") | ||
114 | assert account | ||