github.com/markusbkk/elvish@v0.0.0-20231204143114-91dc52438621/pkg/testutil/testutil_test.go (about) 1 package testutil 2 3 type cleanuper struct{ fns []func() } 4 5 func (c *cleanuper) Cleanup(fn func()) { c.fns = append(c.fns, fn) } 6 7 func (c *cleanuper) runCleanups() { 8 for i := len(c.fns) - 1; i >= 0; i-- { 9 c.fns[i]() 10 } 11 }