Files
Gogs/internal/osx/error_test.go
ᴊᴏᴇ ᴄʜᴇɴ 36d56d5525 all: rename packages ending with "util" to end with "x" (#8182)
Co-authored-by: JSS <jss@unknwon.dev>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-16 13:25:19 -05:00

26 lines
428 B
Go

package osx
import (
"os"
"testing"
"github.com/stretchr/testify/assert"
"gogs.io/gogs/internal/errx"
)
func TestError_NotFound(t *testing.T) {
tests := []struct {
err error
expVal bool
}{
{err: os.ErrNotExist, expVal: true},
{err: os.ErrClosed, expVal: false},
}
for _, test := range tests {
t.Run("", func(t *testing.T) {
assert.Equal(t, test.expVal, errx.IsNotFound(NewError(test.err)))
})
}
}