debian-mirror-gitlab/spec/models/project_services/hangouts_chat_service_spec.rb

12 lines
272 B
Ruby
Raw Normal View History

2019-02-15 15:39:39 +05:30
# frozen_string_literal: true
2018-11-18 11:00:15 +05:30
2019-02-15 15:39:39 +05:30
require "spec_helper"
2019-01-03 12:48:30 +05:30
2020-07-28 23:09:34 +05:30
RSpec.describe HangoutsChatService do
2019-02-15 15:39:39 +05:30
it_behaves_like "chat service", "Hangouts Chat" do
let(:client) { HangoutsChat::Sender }
let(:client_arguments) { webhook_url }
let(:content_key) { :text }
2018-11-18 11:00:15 +05:30
end
end