25 lines
417 B
Go
25 lines
417 B
Go
|
// Copyright 2020 the Pinniped contributors. All Rights Reserved.
|
||
|
// SPDX-License-Identifier: Apache-2.0
|
||
|
|
||
|
// +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
|
||
|
}
|