shithub: hugo

Download patch

ref: d40116e5f941e4734ed3bed69dce8ffe11fc76b2
parent: c362634b7d8802ea81b0b4341c800a9f78f7cd7c
author: satotake <[email protected]>
date: Sun Aug 5 17:59:29 EDT 2018

Renmae FileStat Stat

--- a/tpl/os/init.go
+++ b/tpl/os/init.go
@@ -55,7 +55,7 @@
 			},
 		)
 
-		ns.AddMethodMapping(ctx.FileStat,
+		ns.AddMethodMapping(ctx.Stat,
 			[]string{"fileStat"},
 			[][2]string{
 				{`{{ (fileStat "files/README.txt").Size }}`, `11`},
--- a/tpl/os/os.go
+++ b/tpl/os/os.go
@@ -131,8 +131,8 @@
 	return status, nil
 }
 
-// FileStat Stat returns the os.FileInfo structure describing file.
-func (ns *Namespace) FileStat(i interface{}) (_os.FileInfo, error) {
+// Stat returns the os.FileInfo structure describing file.
+func (ns *Namespace) Stat(i interface{}) (_os.FileInfo, error) {
 	path, err := cast.ToStringE(i)
 	if err != nil {
 		return nil, err
--- a/tpl/os/os_test.go
+++ b/tpl/os/os_test.go
@@ -100,7 +100,7 @@
 	}
 }
 
-func TestFileStat(t *testing.T) {
+func TestStat(t *testing.T) {
 	t.Parallel()
 
 	workingDir := "/home/hugo"
@@ -122,7 +122,7 @@
 		{"", nil},
 	} {
 		errMsg := fmt.Sprintf("[%d] %v", i, test)
-		result, err := ns.FileStat(test.filename)
+		result, err := ns.Stat(test.filename)
 
 		if test.expect == nil {
 			require.Error(t, err, errMsg)