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

unify_circuit_spec.rb « integrations « models « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7a91b2d3c11436818b53d6bc356423c586e475c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

require "spec_helper"

RSpec.describe Integrations::UnifyCircuit do
  it_behaves_like "chat integration", "Unify Circuit" do
    let(:client_arguments) { webhook_url }
    let(:payload) do
      {
        subject: project.full_name,
        text: be_present,
        markdown: true
      }
    end
  end
end