c40779224f
Fixes #52
14 lines
177 B
Go
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)
|
|
}
|
|
}
|