Closed benceluzsinszky closed 9 months ago
def test_a_unfollows_b(): username = 'a' url = f'{BASE_URL}/fllws/{username}' # first send unfollow command data = {'unfollow': 'b'} params = {'latest': 10} response = requests.post(url, data=json.dumps(data), headers=HEADERS, params=params) assert response.ok # then verify that b is no longer in follows list query = {'no': 20, 'latest': 11} response = requests.get(url, params=query, headers=HEADERS) assert response.ok assert 'b' not in response.json()['follows'] # verify that latest was updated response = requests.get(f'{BASE_URL}/latest', headers=HEADERS) assert response.json()['latest'] == 11