Welcome to mirror list, hosted at ThFree Co, Russian Federation.

webex_teams_spec.rb « integrations « models « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 50a1383292bb0feb6e4299f65bf9b14cc2adcc4f (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::WebexTeams, feature_category: :integrations do
  it_behaves_like "chat integration", "Webex Teams" do
    let(:client_arguments) { webhook_url }
    let(:payload) do
      {
        markdown: be_present
      }
    end
  end
end