mirror of https://sc.cryxtal.org/crystal/forgejo
18 lines
313 B
18 lines
313 B
5 years ago
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
||
2 years ago
|
// SPDX-License-Identifier: MIT
|
||
5 years ago
|
|
||
|
package convert
|
||
|
|
||
|
import (
|
||
|
"path/filepath"
|
||
|
"testing"
|
||
|
|
||
3 years ago
|
"code.gitea.io/gitea/models/unittest"
|
||
5 years ago
|
)
|
||
|
|
||
|
func TestMain(m *testing.M) {
|
||
3 years ago
|
unittest.MainTest(m, &unittest.TestOptions{
|
||
|
GiteaRootPath: filepath.Join("..", ".."),
|
||
|
})
|
||
5 years ago
|
}
|