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