Ejemplo n.º 1
0
def test_parse_common_location_path():
    expected = {
        "project": "squid",
        "location": "clam",
    }
    path = SessionsClient.common_location_path(**expected)

    # Check that the path construction is reversible.
    actual = SessionsClient.parse_common_location_path(path)
    assert expected == actual
Ejemplo n.º 2
0
def test_common_location_path():
    project = "scallop"
    location = "abalone"

    expected = "projects/{project}/locations/{location}".format(
        project=project,
        location=location,
    )
    actual = SessionsClient.common_location_path(project, location)
    assert expected == actual