()
| 44 | |
| 45 | @app.route("/", methods=["PUT"]) |
| 46 | def index_put(): |
| 47 | return "Aha!" |
| 48 | |
| 49 | rv = client.open("/", method="OPTIONS") |
| 50 | assert sorted(rv.allow) == ["GET", "HEAD", "OPTIONS", "POST", "PUT"] |
nothing calls this directly
no outgoing calls
no test coverage detected