blob: 1771ccfc38db58962392f0f14bcbb9ed5d95eb62 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package example
import (
"os"
"testing"
"github.com/stretchr/testify/require"
)
func TestFoo(t *testing.T) {
_, err := os.Stat("/code")
require.NoError(t, err)
}
|