mirror of
https://github.com/shouptech/flask-tutorial.git
synced 2026-02-03 15:39:44 +00:00
6 lines
136 B
Python
6 lines
136 B
Python
from flaskr import create_app
|
|
|
|
|
|
def test_config():
|
|
assert not create_app().testing
|
|
assert create_app({'TESTING': True}).testing
|