debian-mirror-gitlab/spec/models/integrations/slack_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
323 B
Ruby
Raw Normal View History

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