debian-mirror-gitlab/spec/models/integrations/unify_circuit_spec.rb

17 lines
339 B
Ruby
Raw Normal View History

2020-01-01 13:55:28 +05:30
# frozen_string_literal: true
require "spec_helper"
2021-09-04 01:27:46 +05:30
RSpec.describe Integrations::UnifyCircuit do
it_behaves_like "chat integration", "Unify Circuit" do
2020-01-01 13:55:28 +05:30
let(:client_arguments) { webhook_url }
2021-04-17 20:07:23 +05:30
let(:payload) do
{
subject: project.full_name,
text: be_present,
markdown: true
}
end
2020-01-01 13:55:28 +05:30
end
end