def test_parse_ad_group_path(): expected = { "customer": "whelk", "ad_group": "octopus", } path = AdGroupExtensionSettingServiceClient.ad_group_path(**expected) # Check that the path construction is reversible. actual = AdGroupExtensionSettingServiceClient.parse_ad_group_path(path) assert expected == actual
def test_ad_group_path(): customer = "squid" ad_group = "clam" expected = "customers/{customer}/adGroups/{ad_group}".format( customer=customer, ad_group=ad_group, ) actual = AdGroupExtensionSettingServiceClient.ad_group_path( customer, ad_group) assert expected == actual