summaryrefslogtreecommitdiff
path: root/spec/workers/propagate_integration_worker_spec.rb
blob: 2461b30a2eda26e5dbdebbb457b5bc918df75d6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe PropagateIntegrationWorker do
  describe '#perform' do
    let(:integration) do
      Integrations::Pushover.create!(
        template: true,
        active: true,
        device: 'MyDevice',
        sound: 'mic',
        priority: 4,
        user_key: 'asdf',
        api_key: '123456789'
      )
    end

    it 'calls the propagate service with the integration' do
      expect(Admin::PropagateIntegrationService).to receive(:propagate).with(integration)

      subject.perform(integration.id)
    end
  end
end