summaryrefslogtreecommitdiff
path: root/spec/models/integrations/webex_teams_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/models/integrations/webex_teams_spec.rb')
-rw-r--r--spec/models/integrations/webex_teams_spec.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/spec/models/integrations/webex_teams_spec.rb b/spec/models/integrations/webex_teams_spec.rb
new file mode 100644
index 00000000000..b5cba6762aa
--- /dev/null
+++ b/spec/models/integrations/webex_teams_spec.rb
@@ -0,0 +1,14 @@
+# frozen_string_literal: true
+
+require "spec_helper"
+
+RSpec.describe Integrations::WebexTeams do
+ it_behaves_like "chat integration", "Webex Teams" do
+ let(:client_arguments) { webhook_url }
+ let(:payload) do
+ {
+ markdown: be_present
+ }
+ end
+ end
+end