mirror of
https://github.com/go-gitea/gitea.git
synced 2026-06-08 00:04:28 +02:00
15 lines
215 B
Go
15 lines
215 B
Go
// Copyright 2025 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package languagestats
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"gitea.dev/modules/git"
|
|
)
|
|
|
|
func TestMain(m *testing.M) {
|
|
git.RunGitTests(m)
|
|
}
|