init python-api lib
This commit is contained in:
0
tests/accounts/login.py
Normal file
0
tests/accounts/login.py
Normal file
10
tests/accounts/register.py
Normal file
10
tests/accounts/register.py
Normal file
@ -0,0 +1,10 @@
|
||||
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
|
Reference in New Issue
Block a user