mirror of
https://github.com/cheat/cheat.git
synced 2024-10-31 21:21:02 +01:00
3f4d4bddb2
Add unit-tests for `sheets.Load`.
30 lines
489 B
Go
30 lines
489 B
Go
package mock
|
|
|
|
import (
|
|
"fmt"
|
|
"path"
|
|
"path/filepath"
|
|
"runtime"
|
|
)
|
|
|
|
// Path returns the absolute path to the specified mock file.
|
|
func Path(filename string) string {
|
|
|
|
// determine the path of this file during runtime
|
|
_, thisfile, _, _ := runtime.Caller(0)
|
|
|
|
// compute the mock path
|
|
file, err := filepath.Abs(
|
|
path.Join(
|
|
filepath.Dir(thisfile),
|
|
"../../mocks",
|
|
filename,
|
|
),
|
|
)
|
|
if err != nil {
|
|
panic(fmt.Errorf("failed to resolve mock path: %v", err))
|
|
}
|
|
|
|
return file
|
|
}
|