2022-10-22 22:45:52 +05:30
|
|
|
// Copyright 2022 The Gitea Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2022-10-22 22:45:52 +05:30
|
|
|
|
|
|
|
package markup
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/models/unittest"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestMain(m *testing.M) {
|
|
|
|
unittest.MainTest(m, &unittest.TestOptions{
|
2023-09-28 07:08:53 +05:30
|
|
|
FixtureFiles: []string{"user.yml"},
|
2022-10-22 22:45:52 +05:30
|
|
|
})
|
|
|
|
}
|