9 lines
240 B
Python
9 lines
240 B
Python
from period import create_app
|
|
|
|
def test_config():
|
|
assert not create_app().testing
|
|
assert create_app({'TESTING': True}).testing
|
|
|
|
def test_hello(client):
|
|
response = client.get('/hello')
|
|
assert response.data == b'Hello, World!' |