forked from Github-Mirrors/canaille
12 lines
394 B
Python
12 lines
394 B
Python
def test_incomplete_requests(testclient, slapd_connection, logged_user, client):
|
|
testclient.get(
|
|
"/oauth/authorize", params=dict(response_type="code",), status=400,
|
|
)
|
|
|
|
|
|
def test_bad_client(testclient, slapd_connection, logged_user, client):
|
|
testclient.get(
|
|
"/oauth/authorize",
|
|
params=dict(response_type="code", clienrt_id="nope",),
|
|
status=400,
|
|
)
|