// Issue 7528
func TestPartialWithZeroedArgs(t *testing.T) {
-
b := newTestSitesBuilder(t)
b.WithTemplatesAdded("index.html",
`
X123X
X123X
`)
-
}
func TestPartialCached(t *testing.T) {
`,
)
}
+
+// Issue 9393.
+func TestApplyWithNamespace(t *testing.T) {
+ b := newTestSitesBuilder(t)
+
+ b.WithTemplates(
+ "index.html", `
+{{ $b := slice " a " " b " " c" }}
+{{ $a := apply $b "strings.Trim" "." " " }}
+a: {{ $a }}
+`,
+ ).WithContent("p1.md", "")
+
+ b.Build(BuildCfg{})
+
+ b.AssertFileContent("public/index.html", `a: [a b c]`)
+}
ss := strings.SplitN(fname, ".", 2)
- // namespace
+ // Namespace
nv, found := ns.lookupFunc(ss[0])
if !found {
return reflect.Value{}, false
}
+ fn, ok := nv.Interface().(func(...interface{}) (interface{}, error))
+ if !ok {
+ return reflect.Value{}, false
+ }
+ v, err := fn()
+ if err != nil {
+ panic(err)
+ }
+ nv = reflect.ValueOf(v)
+
// method
m := nv.MethodByName(ss[1])
- // if reflect.DeepEqual(m, reflect.Value{}) {
+
if m.Kind() == reflect.Invalid {
return reflect.Value{}, false
}