summaryrefslogtreecommitdiffstats
path: root/tests/test_factory.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_factory.py')
-rw-r--r--tests/test_factory.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/test_factory.py b/tests/test_factory.py
new file mode 100644
index 0000000..024c19a
--- /dev/null
+++ b/tests/test_factory.py
@@ -0,0 +1,11 @@
+from flaskr 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!' \ No newline at end of file