(self, monkeypatch, debug, expect)
| 342 | ], |
| 343 | ) |
| 344 | def test_get_debug_flag(self, monkeypatch, debug, expect): |
| 345 | monkeypatch.setenv("FLASK_DEBUG", debug) |
| 346 | assert get_debug_flag() == expect |
| 347 | |
| 348 | def test_make_response(self): |
| 349 | app = flask.Flask(__name__) |
nothing calls this directly
no test coverage detected