diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_app.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/test_app.py b/tests/test_app.py new file mode 100644 index 0000000..6d96fbb --- /dev/null +++ b/tests/test_app.py @@ -0,0 +1,14 @@ +import unittest + +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()) |