2019-07-07 11:18:12 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-04-26 12:48:37 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
2021-09-04 01:27:46 +05:30
|
|
|
RSpec.describe Integrations::Slack do
|
2023-01-13 00:05:48 +05:30
|
|
|
it_behaves_like Integrations::SlackMattermostNotifier, 'Slack'
|
2023-03-04 22:38:38 +05:30
|
|
|
it_behaves_like Integrations::BaseSlackNotification, factory: :integrations_slack do
|
|
|
|
before do
|
|
|
|
stub_request(:post, integration.webhook)
|
|
|
|
end
|
|
|
|
end
|
2015-04-26 12:48:37 +05:30
|
|
|
end
|