|
|
@ -69,10 +69,13 @@ def test_google_fonts_in_generated_redoc(): |
|
|
|
|
|
|
|
def test_generated_redoc_with_parameters(): |
|
|
|
body_with_parameters = get_redoc_html( |
|
|
|
openapi_url="/docs", title="title", with_google_fonts=False, redoc_ui_parameters={"disable-search": "true"} |
|
|
|
openapi_url="/docs", |
|
|
|
title="title", |
|
|
|
with_google_fonts=False, |
|
|
|
redoc_ui_parameters={"disable-search": "true"}, |
|
|
|
).body.decode() |
|
|
|
assert "disable-search=\"true\"" in body_with_parameters |
|
|
|
assert 'disable-search="true"' in body_with_parameters |
|
|
|
body_without_parameters = get_redoc_html( |
|
|
|
openapi_url="/docs", title="title", with_google_fonts=False |
|
|
|
).body.decode() |
|
|
|
assert "disable-search=\"true\"" not in body_without_parameters |
|
|
|
assert 'disable-search="true"' not in body_without_parameters |
|
|
|