10 lines
206 B
Python
10 lines
206 B
Python
from unittest import TestCase
|
|
import uuid
|
|
|
|
class RegisterTest(TestCase):
|
|
|
|
def setUp(self):
|
|
self.username: str = uuid.uuid4()
|
|
self.password: str = uuid.uuid4()
|
|
|
|
def test_valid |