def test_common_location_path(): project = "oyster" location = "nudibranch" expected = "projects/{project}/locations/{location}".format( project=project, location=location, ) actual = CampaignDraftServiceClient.common_location_path(project, location) assert expected == actual
def test_parse_common_location_path(): expected = { "project": "cuttlefish", "location": "mussel", } path = CampaignDraftServiceClient.common_location_path(**expected) # Check that the path construction is reversible. actual = CampaignDraftServiceClient.parse_common_location_path(path) assert expected == actual