blob: ccf7939bc9b352ca918c10efca8faf544e866984 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
import pytest
@pytest.mark.vcr()
def test_follow_requests(api):
reqs = api.follow_requests()
assert isinstance(reqs, list)
@pytest.mark.vcr()
def test_follow_request_authorize(api, api2):
api2.account_follow(1234567890123456)
api.follow_request_authorize(1)
api2.account_unfollow(1234567890123456)
@pytest.mark.vcr()
def test_follow_request_reject(api, api2):
api2.account_follow(1234567890123456)
api.follow_request_reject(1)
|