mirror of
https://github.com/mattermost/mattermost.git
synced 2026-03-02 21:31:09 -05:00
* plugin sandboxing * remove unused type * better symlink handling, better remounting, better test, whitespace fixes, and comment on the remounting * fix test compile error * big simplification for getting mount flags * mask statfs flags to the ones we're interested in
14 lines
337 B
Go
14 lines
337 B
Go
// 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)
|
|
}
|