This commit is contained in:
yangzhangs 2019-07-23 09:58:37 +08:00
parent fc43d1f25d
commit ecded4daf3
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ class AppTestCase(unittest.TestCase):
def test_root_text(self):
tester = app.test_client(self)
response = tester.get('/')
assert 'Hello world!' in response.data
assert 'Hello world! Hi!' in response.data
if __name__ == '__main__':
unittest.main()