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