houdini/spec/models/campaign_spec.rb

31 lines
1.1 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
2020-06-12 20:03:43 +00:00
# License: AGPL-3.0-or-later WITH WTO-AP-3.0-or-later
# Full license explanation at https://github.com/houdiniproject/houdini/blob/master/LICENSE
2019-02-11 22:10:57 +00:00
require 'rails_helper'
RSpec.describe Campaign, type: :model do
describe 'sends correct email based on type of campaign' do
let(:nonprofit) { force_create(:nm_justice) }
2019-02-11 22:10:57 +00:00
let(:parent_campaign) { force_create(:campaign, name: 'Parent campaign', nonprofit: nonprofit) }
let(:child_campaign) do
force_create(:campaign,
name: 'Child campaign',
parent_campaign_id: parent_campaign.id,
slug: 'twehotiheiotheiofnieoth',
goal_amount_dollars: '1000', nonprofit: nonprofit)
2019-02-11 22:10:57 +00:00
end
2019-11-08 19:12:55 +00:00
it 'parent campaign sends out a create job' do
2020-06-12 18:03:59 +00:00
expect(Houdini.event_publisher).to receive(:announce).with(:campaign_create, any_args).exactly(:once)
2019-11-08 19:12:55 +00:00
parent_campaign
2019-02-11 22:10:57 +00:00
end
2019-11-08 19:12:55 +00:00
it 'child campaign sends out federated create job' do
2020-06-12 18:03:59 +00:00
expect(Houdini.event_publisher).to receive(:announce).with(:campaign_create, any_args).exactly(:twice)
2019-11-08 19:12:55 +00:00
parent_campaign
child_campaign
2019-02-11 22:10:57 +00:00
end
end
end