rakib72642's picture
create django structure
fe9d3dc
raw
history blame contribute delete
257 Bytes
from django.test import TestCase, Client
from django.urls import reverse
class SimpleTest(TestCase):
def test_details(self):
client = Client()
response = client.get(reverse('status'))
self.assertEqual(response.status_code, 200)