debian-mirror-gitlab/spec/models/integrations/slack_spec.rb
2023-03-04 22:38:38 +05:30

12 lines
323 B
Ruby

# frozen_string_literal: true
require 'spec_helper'
RSpec.describe Integrations::Slack do
it_behaves_like Integrations::SlackMattermostNotifier, 'Slack'
it_behaves_like Integrations::BaseSlackNotification, factory: :integrations_slack do
before do
stub_request(:post, integration.webhook)
end
end
end