gitlab-org--gitlab-foss/spec/models/project_services/unify_circuit_service_spec.rb

17 lines
328 B
Ruby

# 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