python3 -Wa manage.py test
from django.test import TestCasefrom django.test import Clientfrom rest_framework import statusfrom rest_framework.test import APIClient# from django.test.client import Client# Create your tests here.class TestClient(TestCase):def setUp(self):self.client = APIClient()def tearDown(self):passdef test_something(self):passdef test_view(self):# client = Client()pass
