26095115f4
* Move some repository related code into sub package * Move more repository functions out of models * Fix lint * Some performance optimization for webhooks and others * some refactors * Fix lint * Fix * Update modules/repository/delete.go Co-authored-by: delvh <dev.lh@web.de> * Fix test * Merge * Fix test * Fix test * Fix test * Fix test Co-authored-by: delvh <dev.lh@web.de>
23 lines
660 B
Go
23 lines
660 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 repo_test
|
|
|
|
import (
|
|
"path/filepath"
|
|
"testing"
|
|
|
|
_ "code.gitea.io/gitea/models" // register table model
|
|
_ "code.gitea.io/gitea/models/perm/access" // register table model
|
|
_ "code.gitea.io/gitea/models/repo" // register table model
|
|
_ "code.gitea.io/gitea/models/user" // register table model
|
|
|
|
"code.gitea.io/gitea/models/unittest"
|
|
)
|
|
|
|
func TestMain(m *testing.M) {
|
|
unittest.MainTest(m, &unittest.TestOptions{
|
|
GiteaRootPath: filepath.Join("..", ".."),
|
|
})
|
|
}
|