mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-12-05 03:17:50 +08:00
6723b9a226
- Use testutil.Set. - Only export such variables to tests.
9 lines
146 B
Go
9 lines
146 B
Go
package eval
|
|
|
|
// Pointers to functions that can be mutated for testing.
|
|
var (
|
|
GetHome = &getHome
|
|
Getwd = &getwd
|
|
TimeAfter = &timeAfter
|
|
)
|