mirror of
https://github.com/junegunn/fzf.git
synced 2025-11-17 15:53:39 -05:00
go run golang.org/x/tools/gopls/internal/analysis/modernize/cmd/modernize@latest -fix -test ./...
25 lines
446 B
Go
25 lines
446 B
Go
package util
|
|
|
|
import (
|
|
"reflect"
|
|
"testing"
|
|
)
|
|
|
|
func TestAtExit(t *testing.T) {
|
|
want := []int{3, 2, 1, 0}
|
|
var called []int
|
|
for i := range 4 {
|
|
n := i
|
|
AtExit(func() { called = append(called, n) })
|
|
}
|
|
RunAtExitFuncs()
|
|
if !reflect.DeepEqual(called, want) {
|
|
t.Errorf("AtExit: want call order: %v got: %v", want, called)
|
|
}
|
|
|
|
RunAtExitFuncs()
|
|
if !reflect.DeepEqual(called, want) {
|
|
t.Error("AtExit: should only call exit funcs once")
|
|
}
|
|
}
|