summaryrefslogtreecommitdiff
path: root/spec/models/project_services/unify_circuit_service_spec.rb
blob: 0c749322e079f189e05e0b56a90ee9ab7eeebe78 (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 UnifyCircuitService do
  it_behaves_like "chat service", "Unify Circuit" do
    let(:client_arguments) { webhook_url }
    let(:payload) do
      {
        subject: project.full_name,
        text: be_present,
        markdown: true
      }
    end
  end
end