from django.test import TestCase
from django.urls import reverse
from rest_framework import status
from rest_framework.test import APIClient


class {{ test_name }}(TestCase):
    
    def setUp(self):
        self.client = APIClient()
      