protoc-gen-go-micro/vendor/github.com/Masterminds/sprig/date_test.go
2017-03-31 18:01:58 +02:00

14 lines
177 B
Go

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)
}
}