func TestDoubleWrap(t *testing.T) { e := stackerr.New("") if stackerr.WrapSkip(e, 1) != e { t.Fatal("double wrap failure") } }
func TestNilWrap(t *testing.T) { if stackerr.WrapSkip(nil, 1) != nil { t.Fatal("did not get nil error") } }