2019-09-05 20:20:09 -06:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 11:20:29 -07:00
|
|
|
// SPDX-License-Identifier: MIT
|
2019-09-05 20:20:09 -06:00
|
|
|
|
|
|
|
package gitdiff
|
|
|
|
|
|
|
|
import (
|
|
|
|
"path/filepath"
|
|
|
|
"testing"
|
|
|
|
|
2021-11-12 07:36:47 -07:00
|
|
|
"code.gitea.io/gitea/models/unittest"
|
2022-06-15 01:02:00 -06:00
|
|
|
|
|
|
|
_ "code.gitea.io/gitea/models"
|
2019-09-05 20:20:09 -06:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestMain(m *testing.M) {
|
2022-04-14 07:58:21 -06:00
|
|
|
unittest.MainTest(m, &unittest.TestOptions{
|
|
|
|
GiteaRootPath: filepath.Join("..", ".."),
|
|
|
|
})
|
2019-09-05 20:20:09 -06:00
|
|
|
}
|