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