aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLorenz Diener <[email protected]>2017-11-30 16:02:52 +0100
committerGitHub <[email protected]>2017-11-30 16:02:52 +0100
commit7e3a4a17a28f52b186e6453a0d1f43614f110b4b (patch)
tree48aafcc35397205d52613cc305dc6baff1cbbda1 /tests/test_notifications.py
parentc6f1196ddc1899e64d60b102e1cfa1c1c1321e77 (diff)
parentd87ada3d73de69ba371acaeca55751e2410c3786 (diff)
downloadmastodon.py-7e3a4a17a28f52b186e6453a0d1f43614f110b4b.tar.gz
Merge pull request #113 from codl/more-tests
More tests!
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)