(app)
| 150 | |
| 151 | |
| 152 | def test_disallow_string_for_allowed_methods(app): |
| 153 | with pytest.raises(TypeError): |
| 154 | app.add_url_rule("/", methods="GET POST", endpoint="test") |
| 155 | |
| 156 | |
| 157 | def test_url_mapping(app, client): |
nothing calls this directly
no test coverage detected