summaryrefslogtreecommitdiffstats
path: root/plugin/plugintest/doc.go
diff options
context:
space:
mode:
authorJesse Hallam <jesse.hallam@gmail.com>2018-08-08 06:07:38 -0400
committerCarlos Tadeu Panato Junior <ctadeu@gmail.com>2018-08-08 12:07:38 +0200
commit7475cd260a3aba46e0b7524656b42209c1779c22 (patch)
tree376cf571b6453800465ffa0ab03e5e44da5de02b /plugin/plugintest/doc.go
parent6bf09e2c34c568e3cb0d296142d5abed77332635 (diff)
downloadchat-7475cd260a3aba46e0b7524656b42209c1779c22.tar.gz
chat-7475cd260a3aba46e0b7524656b42209c1779c22.tar.bz2
chat-7475cd260a3aba46e0b7524656b42209c1779c22.zip
fix plugintest example and docs (#9213)
Diffstat (limited to 'plugin/plugintest/doc.go')
-rw-r--r--plugin/plugintest/doc.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/plugin/plugintest/doc.go b/plugin/plugintest/doc.go
new file mode 100644
index 000000000..69a51bd39
--- /dev/null
+++ b/plugin/plugintest/doc.go
@@ -0,0 +1,11 @@
+// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
+// See License.txt for license information.
+
+// The plugintest package provides mocks that can be used to test plugins.
+//
+// The mocks are created using testify's mock package:
+// https://godoc.org/github.com/stretchr/testify/mock
+//
+// If you need to import the mock package, you can import it with
+// "github.com/mattermost/mattermost-server/plugin/plugintest/mock".
+package plugintest