mirror of
https://github.com/simple-login/app.git
synced 2024-11-16 08:58:30 +01:00
8 lines
190 B
Python
8 lines
190 B
Python
|
from app.config import EMAIL_DOMAIN
|
||
|
from app.models import generate_email
|
||
|
|
||
|
|
||
|
def test_generate_email(flask_client):
|
||
|
email = generate_email()
|
||
|
assert email.endswith("@" + EMAIL_DOMAIN)
|