You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
221 B
Python
11 lines
221 B
Python
7 years ago
|
import requests
|
||
|
|
||
|
def test_request_response(mockserver):
|
||
|
mock_server_port = mockserver
|
||
|
url = 'http://localhost:{port}/users'.format(port=mock_server_port)
|
||
|
|
||
|
response = requests.get(url)
|
||
|
|
||
|
assert response.ok
|
||
|
|