protoc-gen-go-micro/vendor/github.com/Masterminds/sprig/date_test.go

14 lines
177 B
Go
Raw Normal View History

package sprig
import (
"testing"
)
func TestHtmlDate(t *testing.T) {
t.Skip()
tpl := `{{ htmlDate 0}}`
if err := runt(tpl, "1970-01-01"); err != nil {
t.Error(err)
}
}