/
githubmirror
/
client
Обзор
Документация
Войти
/
githubmirror
/
client
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
go/engine/template_test.go
22 строки
434 B
chrisnojima-zoom
Version 670 - clean2 (#29122)
08 июн 2026, 19:31
Не верифицирован
08 июн 2026, 19:31
1943197
Код
Авторство
О чём код?
// Copyright 2015 Keybase, Inc. All rights reserved. Use of // this source code is governed by the included BSD license. //go:build ignore // // This is a test template for the Template engine. package engine import "testing" func TestTemplate(t *testing.T) { tc := SetupEngineTest(t, "template") defer tc.Cleanup() ctx := &Context{} eng := NewTemplate(tc.G) if err := RunEngine(eng, ctx); err != nil { t.Fatal(err) } }