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

16 lines
310 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 }
2021-04-17 20:07:23 +05:30
let(:payload) do
{
text: be_present
}
end
2018-11-18 11:00:15 +05:30
end
end