def test_parse_common_project_path(): expected = { "project": "mussel", } path = BiddingStrategySimulationServiceClient.common_project_path( **expected) # Check that the path construction is reversible. actual = BiddingStrategySimulationServiceClient.parse_common_project_path( path) assert expected == actual
def test_common_project_path(): project = "cuttlefish" expected = "projects/{project}".format(project=project, ) actual = BiddingStrategySimulationServiceClient.common_project_path( project) assert expected == actual