mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-10-30 17:34:13 +01:00
25 lines
514 B
Go
25 lines
514 B
Go
|
// Copyright 2024 The Forgejo Authors. All rights reserved.
|
||
|
// SPDX-License-Identifier: MIT
|
||
|
|
||
|
package templates_test
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"testing"
|
||
|
|
||
|
"code.gitea.io/gitea/models/unittest"
|
||
|
"code.gitea.io/gitea/modules/markup"
|
||
|
|
||
|
_ "code.gitea.io/gitea/models"
|
||
|
_ "code.gitea.io/gitea/models/issues"
|
||
|
)
|
||
|
|
||
|
func TestMain(m *testing.M) {
|
||
|
markup.Init(&markup.ProcessorHelper{
|
||
|
IsUsernameMentionable: func(ctx context.Context, username string) bool {
|
||
|
return username == "mention-user"
|
||
|
},
|
||
|
})
|
||
|
unittest.MainTest(m)
|
||
|
}
|