12 lines
323 B
Ruby
12 lines
323 B
Ruby
# 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
|