elvish/pkg/eval/testexport_test.go
2024-01-30 20:21:39 +00:00

15 lines
352 B
Go

package eval
// Pointers to variables that can be mutated for testing.
var (
GetHome = &getHome
Getwd = &getwd
OSExit = &osExit
TimeAfter = &timeAfter
TimeNow = &timeNow
NextEvalCount = &nextEvalCount
ExceptionCauseStartMarker = &exceptionCauseStartMarker
ExceptionCauseEndMarker = &exceptionCauseEndMarker
)