mirror of
https://github.com/go-gitea/gitea
synced 2025-01-08 21:06:01 +01:00
781c6df40f
Just like GitHub, show issue icon/title when the issue number is in a list
17 lines
351 B
Go
17 lines
351 B
Go
// Copyright 2022 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package markup
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"code.gitea.io/gitea/models/unittest"
|
|
)
|
|
|
|
func TestMain(m *testing.M) {
|
|
unittest.MainTest(m, &unittest.TestOptions{
|
|
FixtureFiles: []string{"user.yml", "repository.yml", "access.yml", "repo_unit.yml", "issue.yml"},
|
|
})
|
|
}
|