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: 0d82abd9e3d37b0820d51ac5bd9b36e54bf2478a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# 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

  it_behaves_like 'supports group mentions', :integrations_slack
end