22 lines
608 B
Go
22 lines
608 B
Go
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
||
|
// Use of this source code is governed by a MIT-style
|
||
|
// license that can be found in the LICENSE file.
|
||
|
|
||
|
package gitea
|
||
|
|
||
|
import (
|
||
|
"log"
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
)
|
||
|
|
||
|
func TestGetGlobalSettings(t *testing.T) {
|
||
|
log.Println("== TestGetGlobalSettings ==")
|
||
|
c := newTestClient()
|
||
|
settings, err := c.GetGlobalSettings()
|
||
|
assert.NoError(t, err)
|
||
|
expectedAllowedReactions := []string{"+1", "-1", "laugh", "hooray", "confused", "heart", "rocket", "eyes"}
|
||
|
assert.ElementsMatch(t, expectedAllowedReactions, settings.AllowedReactions)
|
||
|
}
|