mirror of
https://github.com/magnum-opus-nn-cp/backend.git
synced 2025-02-23 15:10:43 +03:00
8 lines
177 B
Python
8 lines
177 B
Python
from press_release_nl.users.models import User
|
|
|
|
|
|
def test_user_create(user: User):
|
|
password = "123"
|
|
user.set_password(password)
|
|
assert user.check_password(password)
|