summaryrefslogtreecommitdiff
path: root/spec/models/integrations/pumble_spec.rb
blob: 8b9b5d214c6deb35525107bae6ac7e5ad2b593ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

require "spec_helper"

RSpec.describe Integrations::Pumble do
  it_behaves_like "chat integration", "Pumble" do
    let(:client_arguments) { webhook_url }
    let(:payload) do
      {
        text: be_present
      }
    end
  end
end