我有一个简单的烧瓶应用程序,我想用pytest测试它。test_ping(self, client): assert res.status_code == 200fixture 'client' not found
> available fixtures: app, cache, capfd, ca
我正在尝试使用pytest-flask为Flask应用程序实现单元测试。我的查询的输出取决于当前时间。 为了一致的单元测试,我尝试冻结时间。我习惯了冻结tried,所以这是我尝试过的: # Session for scope, otherwise server is reloaded everytime
# http://flask.pocoo.org