def test_campaign_path():
    customer = "squid"
    campaign = "clam"
    expected = "customers/{customer}/campaigns/{campaign}".format(
        customer=customer,
        campaign=campaign,
    )
    actual = CampaignDraftServiceClient.campaign_path(customer, campaign)
    assert expected == actual
def test_parse_campaign_path():
    expected = {
        "customer": "whelk",
        "campaign": "octopus",
    }
    path = CampaignDraftServiceClient.campaign_path(**expected)

    # Check that the path construction is reversible.
    actual = CampaignDraftServiceClient.parse_campaign_path(path)
    assert expected == actual