1
Fork 0
mirror of https://codeberg.org/forgejo/forgejo.git synced 2024-10-03 05:43:16 +00:00
forgejo/cmd/main_test.go

17 lines
271 B
Go
Raw Normal View History

// Copyright 2022 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
package cmd
import (
"testing"
"code.gitea.io/gitea/models/unittest"
)
func TestMain(m *testing.M) {
unittest.MainTest(m, &unittest.TestOptions{
GiteaRootPath: "..",
})
}