sarsooxyz.pyreact/main_test.py
2019-02-07 00:13:16 +00:00

11 lines
204 B
Python

import main
def test_index():
main.app.testing = True
client = main.app.test_client()
r = client.get('/')
assert r.status_code == 200
assert 'Hello World' in r.data.decode('utf-8')