django-markdownx/markdownx/tests/tests.py
2015-09-30 12:51:07 +02:00

8 lines
188 B
Python

from django.test import TestCase
class SimpleTest(TestCase):
def test_me(self):
response = self.client.get('/testview/')
self.assertEqual(response.status_code, 200)