7 lines
129 B
Python
7 lines
129 B
Python
from rest_framework.test import APITestCase
|
|
|
|
|
|
class TestItWorks(APITestCase):
|
|
def test_it_works(self):
|
|
assert 1 == 1
|