11 lines
223 B
Python
11 lines
223 B
Python
|
# -*- python -*-
|
||
|
# -*- coding: utf-8 -*-
|
||
|
from unittest import TestCase
|
||
|
|
||
|
|
||
|
class WSGITest(TestCase):
|
||
|
|
||
|
def test_wsgi_application(self):
|
||
|
from gnuviechadmin import wsgi
|
||
|
self.assertIsNotNone(wsgi.application)
|