aboutsummaryrefslogtreecommitdiff
path: root/tests/test_app.py
diff options
context:
space:
mode:
authorElena ``of Valhalla'' Grandi <valhalla@trueelena.org>2023-12-04 07:28:02 +0100
committerElena ``of Valhalla'' Grandi <valhalla@trueelena.org>2023-12-29 07:29:12 +0100
commit0a56d27c3b0f590e0eef85666bb0d10d36041089 (patch)
tree22fb8c828ddf05919a2b19fa010f30a3be95e667 /tests/test_app.py
parentbaf3dc2691ea92ffb09ba107cb7abf2bb737122a (diff)
basic django project
Diffstat (limited to 'tests/test_app.py')
-rw-r--r--tests/test_app.py27
1 files changed, 0 insertions, 27 deletions
diff --git a/tests/test_app.py b/tests/test_app.py
deleted file mode 100644
index 6cf29c5..0000000
--- a/tests/test_app.py
+++ /dev/null
@@ -1,27 +0,0 @@
-import os
-import unittest
-import unittest.mock
-
-from kerbana import config, create_app
-
-
-class TestBase(unittest.TestCase):
- def setUp(self):
- test_config = config.TestConfig()
- self.app = create_app(test_config)
- self.client = self.app.test_client()
-
- def test_root(self):
- res = self.client.get("/")
- self.assertEqual("Hello World!", res.data.decode())
-
-
-class TestConfig(unittest.TestCase):
- def test_default_config(self):
- app = create_app()
- self.assertEqual(app.config["SECRET_KEY"], "dev")
-
- @unittest.mock.patch.dict(os.environ, {"KERBANA_CONFIG": "no_such_file"})
- def test_kerbana_config_env_non_existing(self):
- app = create_app()
- self.assertEqual(app.config["SECRET_KEY"], "dev")