/
githubmirror
/
rclone
Обзор
Документация
Войти
/
githubmirror
/
rclone
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
lib/http/auth_test.go
15 строк
316 B
Zach Kipp
cmd/rcd: Fix command docs to include command specific prefix (#6675)
22 мар 2023, 14:47
22 мар 2023, 14:47
0df7466
Код
Авторство
О чём код?
package http import ( "strings" "testing" ) func TestHelpPrefixAuth(t *testing.T) { // This test assumes template variables are placed correctly. const testPrefix = "server-help-test" helpMessage := AuthHelp(testPrefix) if !strings.Contains(helpMessage, testPrefix) { t.Fatal("flag prefix not found") } }