mirror of
https://github.com/Hopiu/django-markdownx.git
synced 2026-03-17 05:50:23 +00:00
8 lines
188 B
Python
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)
|