debian-mirror-gitlab/spec/models/integrations/hangouts_chat_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
321 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
2021-09-04 01:27:46 +05:30
RSpec.describe Integrations::HangoutsChat do
it_behaves_like "chat integration", "Hangouts Chat" do
2019-02-15 15:39:39 +05:30
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