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

12 lines
266 B
Ruby
Raw Normal View History

2018-11-06 22:12:02 +00:00
# frozen_string_literal: true
2018-11-06 22:12:02 +00:00
require "spec_helper"
2018-11-06 22:12:02 +00:00
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