mirror of
https://github.com/gogs/gogs.git
synced 2026-03-02 10:11:04 +01:00
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)
|
||
|
|
}
|