aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_status.py')
-rw-r--r--tests/test_status.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/test_status.py b/tests/test_status.py
index 95390b3..d36c000 100644
--- a/tests/test_status.py
+++ b/tests/test_status.py
@@ -104,3 +104,11 @@ def test_status_mute_unmute(status, api):
104 104
105 status = api.status_unmute(status['id']) 105 status = api.status_unmute(status['id'])
106 assert not status['muted'] 106 assert not status['muted']
107
108@pytest.mark.vcr()
109def test_status_pin_unpin(status, api):
110 status = api.status_pin(status['id'])
111 assert status['pinned']
112
113 status = api.status_unpin(status['id'])
114 assert not status['pinned']
Powered by cgit v1.2.3 (git 2.41.0)