/
githubmirror
/
rclone
Обзор
Документация
Войти
/
githubmirror
/
rclone
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
lib/http/template_test.go
15 строк
326 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 TestHelpPrefixTemplate(t *testing.T) { // This test assumes template variables are placed correctly. const testPrefix = "template-help-test" helpMessage := TemplateHelp(testPrefix) if !strings.Contains(helpMessage, testPrefix) { t.Fatal("flag prefix not found") } }