aboutsummaryrefslogtreecommitdiff
blob: 67626f710e3eb6d184e1e758d8ef893e9f1dcaa3 (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
import pytest

@pytest.mark.vcr()
def test_follow_requests(api):
    reqs = api.follow_requests()
    assert isinstance(reqs, list)


# warning: these two send emails, which open in letter opener by default
# so if you are re-recording a cassette for either of these mastodon will
# probably open a browser window for you, which you can safely close
@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)
Powered by cgit v1.2.3 (git 2.41.0)