| 188 | |
| 189 | def test_methods_var_inheritance(app, client): |
| 190 | class BaseView(flask.views.MethodView): |
| 191 | methods = ["GET", "PROPFIND"] |
| 192 | |
| 193 | class ChildView(BaseView): |
| 194 | def get(self): |
nothing calls this directly
no outgoing calls
no test coverage detected