1
0
Fork 0
mirror of https://github.com/miniflux/v2.git synced 2025-08-06 17:41:00 +00:00
miniflux-v2/internal/template/engine_test.go

15 lines
324 B
Go
Raw Normal View History

// SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
// SPDX-License-Identifier: Apache-2.0
package template // import "miniflux.app/v2/internal/template"
import (
"testing"
)
func TestParseTemplates(t *testing.T) {
if err := NewEngine(nil).ParseTemplates(); err != nil {
t.Fatal(err)
}
}