aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_account.py')
-rw-r--r--tests/test_account.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/test_account.py b/tests/test_account.py
index 0a2e870..71ceb66 100644
--- a/tests/test_account.py
+++ b/tests/test_account.py
@@ -162,3 +162,14 @@ def test_account_pinned(status, status2, api):
162 assert not status2 in pinned 162 assert not status2 in pinned
163 finally: 163 finally:
164 api.status_unpin(status['id']) 164 api.status_unpin(status['id'])
165
166@pytest.mark.vcr()
167def test_follow_suggestions(api):
168 suggestions = api.suggestions()
169 assert(suggestions)
170 assert(len(suggestions) > 0)
171
172 api.suggestion_delete(suggestions[0])
173 suggestions2 = api.suggestions()
174 assert(len(suggestions2) < len(suggestions))
175
Powered by cgit v1.2.3 (git 2.41.0)