Ejemplo n.º 1
0
def client_session_id(faker: Faker) -> UUIDStr:
    return faker.uuid4()
Ejemplo 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
Ejemplo n.º 3
0
def node_uuid(faker: Faker) -> str:
    return faker.uuid4()