Welcome to mirror list, hosted at ThFree Co, Russian Federation.

discord_service_spec.rb « project_services « models « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: be82f22347812feb1ed138461124ceccf4313d36 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

require "spec_helper"

describe DiscordService do
  it_behaves_like "chat service", "Discord notifications" do
    let(:client) { Discordrb::Webhooks::Client }
    let(:client_arguments) { { url: webhook_url } }
    let(:content_key) { :content }
  end
end