mirror of
https://github.com/go-gitea/gitea
synced 2024-10-31 19:28:58 +01:00
d4f84f1c93
* Move reaction to models/issues/ * Fix test * move the function * improve code * Update models/issues/reaction.go Co-authored-by: wxiaoguang <wxiaoguang@gmail.com> Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
26 lines
516 B
Go
26 lines
516 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 issues
|
|
|
|
import (
|
|
"path/filepath"
|
|
"testing"
|
|
|
|
"code.gitea.io/gitea/models/unittest"
|
|
"code.gitea.io/gitea/modules/setting"
|
|
)
|
|
|
|
func init() {
|
|
setting.SetCustomPathAndConf("", "", "")
|
|
setting.LoadForTest()
|
|
}
|
|
|
|
func TestMain(m *testing.M) {
|
|
unittest.MainTest(m, filepath.Join("..", ".."),
|
|
"reaction.yml",
|
|
"user.yml",
|
|
"repository.yml",
|
|
)
|
|
}
|