(self)
| 253 | n += 1 |
| 254 | |
| 255 | def dispatch_request(self): |
| 256 | return str(n) |
| 257 | |
| 258 | app.add_url_rule("/", view_func=CountInit.as_view("index")) |
| 259 | assert client.get("/").data == b"1" |
nothing calls this directly
no outgoing calls
no test coverage detected