def test_parse_ad_group_path(): expected = { "customer": "cuttlefish", "ad_group": "mussel", } path = RecommendationServiceClient.ad_group_path(**expected) # Check that the path construction is reversible. actual = RecommendationServiceClient.parse_ad_group_path(path) assert expected == actual
def test_ad_group_path(): customer = "oyster" ad_group = "nudibranch" expected = "customers/{customer}/adGroups/{ad_group}".format(customer=customer, ad_group=ad_group, ) actual = RecommendationServiceClient.ad_group_path(customer, ad_group) assert expected == actual