2018-05-17 06:05:00 +02:00
|
|
|
// Copyright 2018 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.
|
|
|
|
|
2021-06-09 01:33:54 +02:00
|
|
|
package admin
|
2018-05-17 06:05:00 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"path/filepath"
|
|
|
|
"testing"
|
|
|
|
|
2021-11-12 15:36:47 +01:00
|
|
|
"code.gitea.io/gitea/models/unittest"
|
2018-05-17 06:05:00 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestMain(m *testing.M) {
|
2021-11-12 15:36:47 +01:00
|
|
|
unittest.MainTest(m, filepath.Join("..", "..", ".."))
|
2018-05-17 06:05:00 +02:00
|
|
|
}
|