mirror of
https://framagit.org/la-chariotte/la-chariotte.git
synced 2025-04-30 10:52:40 +02:00
10 lines
297 B
Python
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
|