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

12 lines
288 B
Ruby
Raw Normal View History

2018-11-05 02:19:40 +00:00
# frozen_string_literal: true
2018-11-05 01:10:27 +00:00
require "spec_helper"
describe DiscordService do
2018-11-09 22:50:37 +00:00
it_behaves_like "chat service", "Discord notifications" do
2018-11-06 22:12:02 +00:00
let(:client) { Discordrb::Webhooks::Client }
let(:client_arguments) { { url: webhook_url } }
let(:content_key) { :content }
2018-11-05 01:10:27 +00:00
end
end