/
githubmirror
/
photoprism
Обзор
Документация
Войти
/
githubmirror
/
photoprism
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
pkg/http/header/robots_test.go
20 строк
468 B
Michael Mayer
Pkg: Move /service/http/... to /http/... and add package /http/dns
19 окт 2025, 22:08
19 окт 2025, 22:08
a921f82
Код
Авторство
О чём код?
package header import ( "testing" "github.com/stretchr/testify/assert" ) func TestRobots(t *testing.T) { t.Run("Header", func(t *testing.T) { assert.Equal(t, "X-Robots-Tag", RobotsTag) }) t.Run("Values", func(t *testing.T) { assert.Equal(t, "all", RobotsAll) assert.Equal(t, "noindex, nofollow", RobotsNone) assert.Equal(t, "noindex", RobotsNoIndex) assert.Equal(t, "nofollow", RobotsNoFollow) assert.Equal(t, "noimageindex", RobotsNoImages) }) }