我想做一些单元测试来检查我的烧瓶应用程序翻译。我试过这段代码:
def test_pt_br(self):
with app.test_request_context():
app.config['BABEL_DEFAULT_LOCALE'] = 'pt_BR'
rv = app.test_client().get('/')
assert 'Execute, melhore' in str(rv.data)
但是,尽管应用程序运行良好,但它不起作用/通过。我究竟做错了什么?