Files
mattermost/api4/cluster_test.go
2017-03-13 12:49:19 -04:00

23 lines
438 B
Go

// Copyright (c) 2017 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
package api4
import (
"testing"
)
func TestGetClusterStatus(t *testing.T) {
th := Setup().InitBasic().InitSystemAdmin()
_, resp := th.Client.GetClusterStatus()
CheckForbiddenStatus(t, resp)
infos, resp := th.SystemAdminClient.GetClusterStatus()
CheckNoError(t, resp)
if infos == nil {
t.Fatal("should not be nil")
}
}