Welcome to mirror list, hosted at ThFree Co, Russian Federation.

slack_spec.rb « integrations « models « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 59ee3746d8fc1c918151d55c08f6672ae2958416 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Integrations::Slack, feature_category: :integrations 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