(self)
| 130 | |
| 131 | class Index3(flask.views.View): |
| 132 | def dispatch_request(self): |
| 133 | return "Hello World!" |
| 134 | |
| 135 | app.add_url_rule("/", view_func=Index3.as_view("index")) |
| 136 | c = app.test_client() |
nothing calls this directly
no outgoing calls
no test coverage detected