summaryrefslogtreecommitdiff
path: root/spec/models/project_services/discord_service_spec.rb
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