2022-03-08 20:28:09 +00:00
|
|
|
// Copyright 2020-2022 the Pinniped contributors. All Rights Reserved.
|
2020-11-24 19:38:28 +00:00
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2022-03-08 20:28:09 +00:00
|
|
|
//nolint:goimports // not an import
|
2020-11-24 19:38:28 +00:00
|
|
|
// +build go1.14
|
|
|
|
|
|
|
|
package testutil
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TempDir(t *testing.T) string {
|
|
|
|
t.Helper()
|
|
|
|
dir, err := ioutil.TempDir("", "test-*")
|
|
|
|
require.NoError(t, err)
|
|
|
|
t.Cleanup(func() {
|
|
|
|
require.NoError(t, os.RemoveAll(dir))
|
|
|
|
})
|
|
|
|
return dir
|
|
|
|
}
|