/
githubmirror
/
photoprism
Обзор
Документация
Войти
/
githubmirror
/
photoprism
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
pkg/capture/time_test.go
15 строк
265 B
Michael Mayer
CI: Apply Go linter recommendations to remaining "pkg/..." code #5330
22 ноя 2025, 18:14
22 ноя 2025, 18:14
149f5e5
Код
Авторство
О чём код?
package capture import ( "testing" "time" "github.com/stretchr/testify/assert" ) func TestTime(t *testing.T) { start := time.Now() time.Sleep(1 * time.Millisecond) result := Time(start, "Successful test") assert.Contains(t, result, "Successful test [") }