EnvironBuilder.json_dumps() takes settings from the app.
(app)
| 108 | |
| 109 | |
| 110 | def test_environbuilder_json_dumps(app): |
| 111 | """EnvironBuilder.json_dumps() takes settings from the app.""" |
| 112 | app.json.ensure_ascii = False |
| 113 | eb = EnvironBuilder(app, json="\u20ac") |
| 114 | assert eb.input_stream.read().decode("utf8") == '"\u20ac"' |
| 115 | |
| 116 | |
| 117 | def test_blueprint_with_subdomain(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…