Files
nomad/client/allocdir/alloc_dir_testing.go
2016-08-31 18:11:02 -07:00

9 lines
206 B
Go

package allocdir
import "io/ioutil"
// TestCreateSecretDirFn is used to create a secret dir suitable for testing
func TestCreateSecretDirFn(_, _ string) (string, error) {
return ioutil.TempDir("", "")
}