debian-mirror-gitlab/spec/workers/propagate_integration_worker_spec.rb
2023-05-27 22:25:52 +05:30

27 lines
654 B
Ruby

# frozen_string_literal: true
require 'spec_helper'
RSpec.describe PropagateIntegrationWorker, feature_category: :integrations do
describe '#perform' do
let(:project) { create(:project) }
let(:integration) do
Integrations::Pushover.create!(
project: project,
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(Integrations::PropagateService).to receive(:propagate).with(integration)
subject.perform(integration.id)
end
end
end