diff options
Diffstat (limited to 'internal/testutil/testutil.go')
-rw-r--r-- | internal/testutil/testutil.go | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/internal/testutil/testutil.go b/internal/testutil/testutil.go new file mode 100644 index 00000000..c7c1bba2 --- /dev/null +++ b/internal/testutil/testutil.go @@ -0,0 +1,13 @@ +// Copyright 2022 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +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") |