Repository URL to install this package:
|
Version:
0.9.7 ▾
|
require 'spec_helper'
describe Lobbyist::V2::SupportedCampaigns do
describe "#list" do
it 'list all supported_campaigns' do
VCR.use_cassette('v2/supported_campaigns') do
result = Lobbyist::V2::SupportedCampaigns.list(company_id: 239)
expect(result).not_to be(nil)
expect(result.campaign_categories).to eq(["drip", "blast", "branding"])
expect(result.filters.count > 0).to be_truthy
end
end
end
end