Exemplo n.º 1
0
def test_delete_invalid():
    campaign = Campaign(**sample_campaign_data())
    with pytest.raises(Exception):
        campaign.delete()

    campaign.id = 0
    with pytest.raises(Exception):
        campaign.delete()
Exemplo n.º 2
0
def test_delete_unknown():
    campaign = Campaign(**sample_campaign_data())
    campaign.id = 1289
    with pytest.raises(ErrorCampaignNotFound):
        campaign.delete()