示例#1
0
def test_common_location_path():
    project = "cuttlefish"
    location = "mussel"
    expected = "projects/{project}/locations/{location}".format(
        project=project,
        location=location,
    )
    actual = CampaignDraftServiceClient.common_location_path(project, location)
    assert expected == actual
示例#2
0
def test_parse_common_location_path():
    expected = {
        "project": "winkle",
        "location": "nautilus",
    }
    path = CampaignDraftServiceClient.common_location_path(**expected)

    # Check that the path construction is reversible.
    actual = CampaignDraftServiceClient.parse_common_location_path(path)
    assert expected == actual