| 206 | |
| 207 | def test_multiple_inheritance(app, client): |
| 208 | class GetView(flask.views.MethodView): |
| 209 | def get(self): |
| 210 | return "GET" |
| 211 | |
| 212 | class DeleteView(flask.views.MethodView): |
| 213 | def delete(self): |
nothing calls this directly
no outgoing calls
no test coverage detected