mirror of
https://github.com/gogs/gogs.git
synced 2026-02-26 08:10:59 +01:00
Co-authored-by: JSS <jss@unknwon.dev> Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
12 lines
135 B
Go
12 lines
135 B
Go
package testx
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestInTest(t *testing.T) {
|
|
assert.True(t, InTest)
|
|
}
|