elvish/pkg/testutil/umask.go
2022-06-05 22:46:24 +01:00

8 lines
192 B
Go

package testutil
// Umask sets the umask for the duration of the test, and restores it afterwards.
func Umask(c Cleanuper, m int) {
save := umask(m)
c.Cleanup(func() { _ = umask(save) })
}