gvaldap/gvaldap/gvaldap/tests/test_wsgi.py

15 lines
280 B
Python
Raw Normal View History

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