summaryrefslogtreecommitdiff
path: root/spec/models/project_services/hangouts_chat_service_spec.rb
blob: 0505ac9b49c69c9ab5979509a422da959d9bdd8b (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

require "spec_helper"

describe HangoutsChatService do
  it_behaves_like "chat service", "Hangouts Chat" do
    let(:client) { HangoutsChat::Sender }
    let(:client_arguments) { webhook_url }
    let(:content_key) { :text }
  end
end