Add some service types to demo
This commit is contained in:
parent
7a4912d8f1
commit
1f5ba40027
|
@ -51,6 +51,11 @@ want = [
|
|||
key={"type": "login", "feature": "wwa"},
|
||||
extra={"description": "Can login into WWA", "hidden": False},
|
||||
),
|
||||
HaveData("data_service_type_group", depends=[],
|
||||
table="service_type",
|
||||
key={"type": "group"},
|
||||
extra={},
|
||||
),
|
||||
HaveData("data_group_wifo", depends=["column_service_id", "column_service_type", "column_service_feature", "column_service_description", "column_service_hidden"],
|
||||
table="service",
|
||||
key={"type": "group", "feature": "wifo"},
|
||||
|
@ -81,6 +86,11 @@ want = [
|
|||
key={"type": "org", "feature": "WSR"},
|
||||
extra={"hidden": False},
|
||||
),
|
||||
HaveData("data_service_type_publ", depends=[],
|
||||
table="service_type",
|
||||
key={"type": "publ"},
|
||||
extra={},
|
||||
),
|
||||
HaveData("data_publ_wifo_intern", depends=["column_service_id", "column_service_type", "column_service_feature", "column_service_description", "column_service_hidden"],
|
||||
table="service",
|
||||
key={"type": "publ", "feature": "wifo_intern"},
|
||||
|
@ -91,6 +101,11 @@ want = [
|
|||
key={"type": "publ", "feature": "wifo_temporary"},
|
||||
extra={"hidden": False},
|
||||
),
|
||||
HaveData("data_service_type_rolle", depends=[],
|
||||
table="service_type",
|
||||
key={"type": "rolle"},
|
||||
extra={},
|
||||
),
|
||||
HaveData("data_rolle_administrative_staff_member", depends=["column_service_id", "column_service_type", "column_service_feature", "column_service_description", "column_service_hidden"],
|
||||
table="service",
|
||||
key={"type": "rolle", "feature": "administrative_staff_member"},
|
||||
|
|
Loading…
Reference in New Issue