from django.test import TestCase class LGLogTests(TestCase): def test_wsgi_asgi(self): """ Only for coverage. """ from lglog import asgi, wsgi self.assertIsNotNone(asgi.application) self.assertIsNotNone(wsgi.application)