
**Backport:** https://codeberg.org/forgejo/forgejo/pulls/7337 - Massive replacement of changing `code.gitea.io/gitea` to `forgejo.org`. - Resolves forgejo/discussions#258 Co-authored-by: Gusted <postmaster@gusted.xyz> Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/7354 Reviewed-by: Gusted <gusted@noreply.codeberg.org> Co-authored-by: forgejo-backport-action <forgejo-backport-action@noreply.codeberg.org> Co-committed-by: forgejo-backport-action <forgejo-backport-action@noreply.codeberg.org>
27 lines
584 B
Go
27 lines
584 B
Go
// Copyright 2019 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package webhook
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"forgejo.org/models/unittest"
|
|
"forgejo.org/modules/hostmatcher"
|
|
"forgejo.org/modules/setting"
|
|
|
|
_ "forgejo.org/models"
|
|
_ "forgejo.org/models/actions"
|
|
_ "forgejo.org/models/forgefed"
|
|
)
|
|
|
|
func TestMain(m *testing.M) {
|
|
// for tests, allow only loopback IPs
|
|
setting.Webhook.AllowedHostList = hostmatcher.MatchBuiltinLoopback
|
|
unittest.MainTest(m, &unittest.TestOptions{
|
|
SetUp: func() error {
|
|
setting.LoadQueueSettings()
|
|
return Init()
|
|
},
|
|
})
|
|
}
|