gvaldap/gvaldap/gvaldap/tests/test_wsgi.py

13 lines
240 B
Python
Raw Normal View History

"""
This module provides tests for :py:mod:`gvaldap.wsgi`.
"""
from unittest import TestCase
class WSGITest(TestCase):
def test_wsgi_application(self):
from gvaldap import wsgi
self.assertIsNotNone(wsgi.application)