12 lines
192 B
Python
12 lines
192 B
Python
from rest_framework.test import APITestCase
|
|
|
|
|
|
# Create your tests here.
|
|
|
|
|
|
class AccountTests(APITestCase):
|
|
|
|
def test_default(self):
|
|
print("account")
|
|
self.assertTrue(False)
|