2019-11-15 02:06:11 -06:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 12:20:29 -06:00
|
|
|
// SPDX-License-Identifier: MIT
|
2019-11-15 02:06:11 -06:00
|
|
|
|
|
|
|
package repository
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2021-11-12 08:36:47 -06:00
|
|
|
"code.gitea.io/gitea/models/unittest"
|
2019-11-15 02:06:11 -06:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestMain(m *testing.M) {
|
2023-09-27 20:38:53 -05:00
|
|
|
unittest.MainTest(m)
|
2019-11-15 02:06:11 -06:00
|
|
|
}
|