(self)
| 264 | assert fires(code, "FLASK001"), "FLASK001 must fire: app.debug = True" |
| 265 | |
| 266 | def test_debug_false_safe(self): |
| 267 | code = "app.run(host='0.0.0.0', debug=False)" |
| 268 | assert not_fires(code, "FLASK001"), "FLASK001 must NOT fire for debug=False" |
| 269 | |
| 270 | |
| 271 | # ============================================================ |
nothing calls this directly
no test coverage detected