summaryrefslogtreecommitdiffstats
path: root/model/outgoing_webhook_test.go
diff options
context:
space:
mode:
authorJoram Wilander <jwawilander@gmail.com>2017-09-28 12:08:16 -0400
committerCorey Hulen <corey@hulen.com>2017-09-28 09:08:16 -0700
commitf263d2b9510fb557fe075dee5097cb32e2b1e5e2 (patch)
tree5e7ca4a3b5e44a685b1e1f8761983dd57441a751 /model/outgoing_webhook_test.go
parent884cf494cbef36786cb035b14bbbccbb19c122c3 (diff)
downloadchat-f263d2b9510fb557fe075dee5097cb32e2b1e5e2.tar.gz
chat-f263d2b9510fb557fe075dee5097cb32e2b1e5e2.tar.bz2
chat-f263d2b9510fb557fe075dee5097cb32e2b1e5e2.zip
PLT-7684 Add support to outgoing webhooks and slash commands to set post type and props (#7531)
* Add support to outgoing webhooks and slash commands to set post type and props * Fix nil access
Diffstat (limited to 'model/outgoing_webhook_test.go')
-rw-r--r--model/outgoing_webhook_test.go13
1 files changed, 13 insertions, 0 deletions
diff --git a/model/outgoing_webhook_test.go b/model/outgoing_webhook_test.go
index 431b1f6c1..2412271b5 100644
--- a/model/outgoing_webhook_test.go
+++ b/model/outgoing_webhook_test.go
@@ -176,3 +176,16 @@ func TestOutgoingWebhookTriggerWordStartsWith(t *testing.T) {
t.Fatal("Should return false")
}
}
+
+func TestOutgoingWebhookResponseJson(t *testing.T) {
+ o := OutgoingWebhookResponse{}
+ o.Text = new(string)
+ *o.Text = "some text"
+
+ json := o.ToJson()
+ ro := OutgoingWebhookResponseFromJson(strings.NewReader(json))
+
+ if *o.Text != *ro.Text {
+ t.Fatal("Text does not match")
+ }
+}