16 lines
328 B
Ruby
16 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
|