예제 #1
0
def test_parse_common_location_path():
    expected = {
        "project": "scallop",
        "location": "abalone",
    }
    path = RegionNotificationEndpointsClient.common_location_path(**expected)

    # Check that the path construction is reversible.
    actual = RegionNotificationEndpointsClient.parse_common_location_path(path)
    assert expected == actual
예제 #2
0
def test_common_location_path():
    project = "winkle"
    location = "nautilus"
    expected = "projects/{project}/locations/{location}".format(
        project=project,
        location=location,
    )
    actual = RegionNotificationEndpointsClient.common_location_path(
        project, location)
    assert expected == actual