blob: 7c2ab382088b5b393e6103ba24b4323cf6129636 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
import pytest
import time
@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):
api_id = api.account_verify_credentials()
api2.account_follow(api_id)
time.sleep(2)
request = api.follow_requests()[0]
api.follow_request_authorize(request)
api2.account_unfollow(api_id)
@pytest.mark.vcr()
def test_follow_request_reject(api, api2):
api2.account_follow(api.account_verify_credentials())
time.sleep(2)
request = api.follow_requests()[0]
api.follow_request_reject(request)
|