Esempio n. 1
0
def client_session_id(faker: Faker) -> UUIDStr:
    return faker.uuid4()
Esempio n. 2
0
def other_project_id(faker: Faker, user_project: Dict[str, Any]) -> UUIDStr:
    other_id = faker.uuid4()
    assert user_project["uuid"] != other_id
    return other_id
Esempio n. 3
0
def node_uuid(faker: Faker) -> str:
    return faker.uuid4()