blob: 06c1fafeb2bb7613f4271ad177d5b30ddb44e48f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
package rpcplugin
import (
"testing"
"github.com/mattermost/mattermost-server/plugin/rpcplugin/rpcplugintest"
)
func TestSupervisorProvider(t *testing.T) {
rpcplugintest.TestSupervisorProvider(t, SupervisorProvider)
}
|