Flask-Testingでテストを書いていて
@app.route('/json/tags') @cache.cached(timeout=600)
みたいにキャッシュしているurlにgetすると
def test_get_json_tags(self): response = self.client.get("/json/tags") self.assert200(response)
タイトルのように
AssertionError: Popped wrong request context.
って怒られるんだが、どうすればいいのかわからない。
あと、テストブームが来たのでPython Testing: Beginner's Guideを注文してしまった。