aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_follow_requests.py')
-rw-r--r--tests/test_follow_requests.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/test_follow_requests.py b/tests/test_follow_requests.py
new file mode 100644
index 0000000..ccf7939
--- /dev/null
+++ b/tests/test_follow_requests.py
@@ -0,0 +1,21 @@
1import pytest
2
3@pytest.mark.vcr()
4def test_follow_requests(api):
5 reqs = api.follow_requests()
6 assert isinstance(reqs, list)
7
8
9@pytest.mark.vcr()
10def test_follow_request_authorize(api, api2):
11 api2.account_follow(1234567890123456)
12 api.follow_request_authorize(1)
13 api2.account_unfollow(1234567890123456)
14
15
16@pytest.mark.vcr()
17def test_follow_request_reject(api, api2):
18 api2.account_follow(1234567890123456)
19 api.follow_request_reject(1)
20
21
Powered by cgit v1.2.3 (git 2.41.0)