Welcome to mirror list, hosted at ThFree Co, Russian Federation.

hangouts_chat_service_spec.rb « project_services « models « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9d3bd457fc874dac61265f58f95c601ea1e0f021 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

require "spec_helper"

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