blob: cb0b9e0a0030b0c8ef456a82f6d5c5cbc4204610 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
import pytest
from engagements.models import EngagementType, Organisation, Engagement
from myuser.models import TeamUser
@pytest.fixture
def engagement():
data = {
"proposed_start_date": "2022-10-01",
"engagement_type": EngagementType.objects.create(name="ET1"),
"external_party": Organisation.objects.create(name="O1"),
}
return Engagement.objects.create(**data)
@pytest.fixture
def user():
return TeamUser.objects.create_user(email="ming@ming.com")
@pytest.fixture
def engagement_type():
return EngagementType.objects.create(name="ET2")
@pytest.fixture
def external_party():
return Organisation.objects.create(name="O2")
@pytest.fixture
def user1():
return TeamUser.objects.create_user(email="user1@example.com")
@pytest.fixture
def user2():
return TeamUser.objects.create_user(email="user2@example.com")
|