blob: c7f3eb459c4b3c494c7572f57bfac620b63e47b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
package api4
import (
"testing"
)
func TestDataRetentionGetPolicy(t *testing.T) {
th := Setup().InitBasic()
defer th.TearDown()
_, resp := th.Client.GetDataRetentionPolicy()
CheckNotImplementedStatus(t, resp)
}
|