__init__.py 211 B

1234567
  1. from django.conf import settings
  2. from rest_framework.test import APITestCase
  3. class BaseAPITestCase(APITestCase):
  4. fixtures = ["initial_data"]
  5. version = settings.REST_FRAMEWORK["DEFAULT_VERSION"]