Fix tests

Signed-off-by: Emmy D'Anello <emmy.danello@animath.fr>
This commit is contained in:
Emmy D'Anello 2023-03-22 15:49:43 +01:00
parent af45e694a8
commit 82c2fe6b36
Signed by: ynerant
GPG Key ID: 3A75C55819C8CF85
1 changed files with 2 additions and 2 deletions

View File

@ -14,11 +14,11 @@ class TestLoadModules(TestCase):
"""
def test_asgi(self):
from tfjm import asgi
self.assertTrue(isinstance(asgi.application, ASGIHandler))
self.assertIsNotNone(asgi)
def test_wsgi(self):
from tfjm import wsgi
self.assertTrue(isinstance(wsgi.application, WSGIHandler))
self.assertIsNotNone(wsgi)
def test_load_production_settings(self):
os.putenv("TFJM_STAGE", "prod")