pkg/errors/error_test.go

12 lines
141 B
Go
Raw Normal View History

2023-09-18 15:58:52 +08:00
package errors
2023-09-18 15:51:20 +08:00
import (
"testing"
)
func TestWarpErrs(t *testing.T) {
t.Run("empty errs", func(t *testing.T) {
t.Log(WarpErrs())
})
}