Files
Gogs/internal/testutil/testutil.go
2026-01-30 23:03:05 -05:00

10 lines
215 B
Go

package testutil
import (
"os"
"strings"
)
// InTest is true if the current binary looks like a test artifact.
var InTest = len(os.Args) > 0 && strings.HasSuffix(strings.TrimSuffix(os.Args[0], ".exe"), ".test")