0
0
mirror of https://github.com/go-gitea/gitea.git synced 2024-11-22 03:28:31 +01:00
gitea/modules/htmlutil/html_test.go

16 lines
336 B
Go
Raw Permalink Normal View History

// Copyright 2024 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
package htmlutil
import (
"html/template"
"testing"
"github.com/stretchr/testify/assert"
)
func TestHTMLFormat(t *testing.T) {
assert.Equal(t, template.HTML("<a>&lt; < 1</a>"), HTMLFormat("<a>%s %s %d</a>", "<", template.HTML("<"), 1))
}