mirror of
https://github.com/Hopiu/django-markdownx.git
synced 2026-04-05 14:20:59 +00:00
9 lines
188 B
Python
9 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)
|