aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_notifications.py')
-rw-r--r--tests/test_notifications.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/test_notifications.py b/tests/test_notifications.py
new file mode 100644
index 0000000..87c898a
--- /dev/null
+++ b/tests/test_notifications.py
@@ -0,0 +1,21 @@
1import pytest
2
3@pytest.fixture()
4def mention(api2):
5 status = api2.status_post('@mastodonpy_test hello!')
6 yield status
7 api2.status_delete(status)
8
9@pytest.mark.vcr()
10def test_notifications(api, mention):
11 notifications = api.notifications()
12 api.notifications(notifications[0])
13
14@pytest.mark.vcr()
15def test_notifications_dismiss(api, mention):
16 notifications = api.notifications()
17 api.notifications_dismiss(notifications[0])
18
19@pytest.mark.vcr()
20def test_notifications_clear(api):
21 api.notifications_clear()
Powered by cgit v1.2.3 (git 2.41.0)