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