aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_account.py')
-rw-r--r--tests/test_account.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/test_account.py b/tests/test_account.py
index 3c94531..dac65ac 100644
--- a/tests/test_account.py
+++ b/tests/test_account.py
@@ -69,6 +69,18 @@ def test_account_mute_unmute(api):
69 69
70 70
71@pytest.mark.vcr() 71@pytest.mark.vcr()
72def test_mutes(api):
73 mutes = api.mutes()
74 assert isinstance(mutes, list)
75
76
77@pytest.mark.vcr()
78def test_blocks(api):
79 blocks = api.blocks()
80 assert isinstance(blocks, list)
81
82
83@pytest.mark.vcr()
72def test_account_update_credentials(api): 84def test_account_update_credentials(api):
73 import base64 85 import base64
74 with open('tests/image.jpg', 'rb') as f: 86 with open('tests/image.jpg', 'rb') as f:
Powered by cgit v1.2.3 (git 2.41.0)