mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-10 07:37:30 +00:00
4 lines
189 B
Python
4 lines
189 B
Python
def test_homepage(client):
|
|
response = client.get('/api/')
|
|
assert response.json()['detail'] == 'Authentication credentials were not provided.'
|
|
assert response.status_code == 401
|