django-markdownx/markdownx/tests/tests.py

9 lines
188 B
Python
Raw Normal View History

2015-09-30 10:51:07 +00:00
from django.test import TestCase
class SimpleTest(TestCase):
def test_me(self):
response = self.client.get('/testview/')
self.assertEqual(response.status_code, 200)