la-chariotte/la_chariotte/helpers/fixtures.py
2023-04-19 18:13:44 +02:00

10 lines
297 B
Python

import pytest
@pytest.fixture
def client_log(client, django_user_model):
username = "test@user.fr"
password = "azertypassword"
user = django_user_model.objects.create_user(username=username, password=password)
client.login(username=username, password=password)
return client