summaryrefslogtreecommitdiff
path: root/spec/models/integrations/hangouts_chat_spec.rb
blob: 17b40c484f5908cc0bf57cfa90dfa3e8b0dd1bcf (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 Integrations::HangoutsChat do
  it_behaves_like "chat integration", "Hangouts Chat" do
    let(:client) { HangoutsChat::Sender }
    let(:client_arguments) { webhook_url }
    let(:payload) do
      {
        text: be_present
      }
    end
  end
end