8 lines
174 B
Python
8 lines
174 B
Python
|
from django.test import TestCase
|
||
|
from GeoffreyApp.util import create_token
|
||
|
|
||
|
|
||
|
class TokenAPITestCase(TestCase):
|
||
|
def test_create_token(self):
|
||
|
print(create_token())
|