mirror of
https://github.com/gogs/gogs.git
synced 2026-01-14 19:32:17 +01:00
Co-authored-by: deepsource-autofix[bot] <62050782+deepsource-autofix[bot]@users.noreply.github.com>
10 lines
215 B
Go
10 lines
215 B
Go
package testutil
|
|
|
|
import (
|
|
"os"
|
|
"strings"
|
|
)
|
|
|
|
// InTest is ture if the current binary looks like a test artifact.
|
|
var InTest = len(os.Args) > 0 && strings.HasSuffix(strings.TrimSuffix(os.Args[0], ".exe"), ".test")
|