2019-12-02 07:06:45 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require "spec_helper"
|
|
|
|
|
2021-05-31 23:10:06 -04:00
|
|
|
RSpec.describe Integrations::UnifyCircuit do
|
|
|
|
it_behaves_like "chat integration", "Unify Circuit" do
|
2019-12-02 07:06:45 -05:00
|
|
|
let(:client_arguments) { webhook_url }
|
2021-02-23 07:10:56 -05:00
|
|
|
let(:payload) do
|
|
|
|
{
|
|
|
|
subject: project.full_name,
|
|
|
|
text: be_present,
|
|
|
|
markdown: true
|
|
|
|
}
|
|
|
|
end
|
2019-12-02 07:06:45 -05:00
|
|
|
end
|
|
|
|
end
|