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>
12 lines
138 B
Go
12 lines
138 B
Go
package testutil
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestInTest(t *testing.T) {
|
|
assert.True(t, InTest)
|
|
}
|