mirror of
https://github.com/simple-login/app.git
synced 2024-11-10 17:35:27 +08:00
7 lines
199 B
Python
7 lines
199 B
Python
from tests.utils import create_new_user
|
|
|
|
|
|
def test_available_sl_domains(flask_client):
|
|
user = create_new_user()
|
|
|
|
assert set(user.available_sl_domains()) == {"d1.test", "d2.test", "sl.local"}
|