You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
406 B
18 lines
406 B
from disco.api.client import Responses
|
|
from disco.api.http import APIResponse
|
|
|
|
|
|
def test_responses_list():
|
|
r = Responses()
|
|
r.append(APIResponse())
|
|
r.append(APIResponse())
|
|
|
|
assert not r.rate_limited
|
|
assert r.rate_limited_duration() == 0
|
|
|
|
res = APIResponse()
|
|
res.rate_limited_duration = 5.5
|
|
r.append(res)
|
|
|
|
assert r.rate_limited
|
|
assert r.rate_limited_duration() == 5.5
|
|
|