/
githubmirror
/
gogs
Обзор
Документация
Войти
/
githubmirror
/
gogs
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
latest-commit-build
conf/embed_test.go
16 строк
330 B
ᴊᴏᴇ ᴄʜᴇɴ
chore: remove all MIT license file headers (#8083)
09 янв 2026, 03:32
Не верифицирован
09 янв 2026, 03:32
59e9fa1
Код
Авторство
О чём код?
package conf import ( "testing" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) func TestFileNames(t *testing.T) { names, err := FileNames(".") require.NoError(t, err) want := []string{"app.ini", "auth.d", "gitignore", "label", "license", "locale", "readme"} assert.Equal(t, want, names) }