mirror of
https://github.com/spf13/viper
synced 2025-04-27 15:57:19 +00:00
18 lines
245 B
Go
18 lines
245 B
Go
package testutil
|
|
|
|
import (
|
|
"path/filepath"
|
|
"testing"
|
|
)
|
|
|
|
// AbsFilePath calls filepath.Abs on path.
|
|
func AbsFilePath(t *testing.T, path string) string {
|
|
t.Helper()
|
|
|
|
s, err := filepath.Abs(path)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
return s
|
|
}
|