diff options
author | Albert Nigmatzianov <[email protected]> | 2016-10-24 20:56:00 +0200 |
---|---|---|
committer | Bjørn Erik Pedersen <[email protected]> | 2016-10-24 20:56:00 +0200 |
commit | f21e2f25c99c547a2f35d209935f8f1c52fa2671 (patch) | |
tree | f2bb860213e88b0244c31144cfcd872665096f06 /hugofs | |
parent | d9f54a13c14f12ccc8af33e9dbd611c2cd113324 (diff) | |
download | hugo-f21e2f25c99c547a2f35d209935f8f1c52fa2671.tar.gz hugo-f21e2f25c99c547a2f35d209935f8f1c52fa2671.zip |
all: Unify case of config variable names
All config variables starts with low-case and uses camelCase.
If there is abbreviation at the beginning of the name, the whole
abbreviation will be written in low-case.
If there is abbreviation at the end of the name, the
whole abbreviation will be written in upper-case.
For example, rssURI.
Diffstat (limited to 'hugofs')
-rw-r--r-- | hugofs/fs.go | 2 | ||||
-rw-r--r-- | hugofs/fs_test.go | 5 |
2 files changed, 4 insertions, 3 deletions
diff --git a/hugofs/fs.go b/hugofs/fs.go index fff0c64a6..7f8abd337 100644 --- a/hugofs/fs.go +++ b/hugofs/fs.go @@ -81,7 +81,7 @@ func InitFs(fs afero.Fs) { } func initSourceDependencies() { - workingDir := viper.GetString("WorkingDir") + workingDir := viper.GetString("workingDir") if workingDir != "" { workingDirFs = afero.NewBasePathFs(afero.NewReadOnlyFs(sourceFs), workingDir).(*afero.BasePathFs) diff --git a/hugofs/fs_test.go b/hugofs/fs_test.go index 8a68039f7..55007009f 100644 --- a/hugofs/fs_test.go +++ b/hugofs/fs_test.go @@ -14,10 +14,11 @@ package hugofs import ( + "testing" + "github.com/spf13/afero" "github.com/spf13/viper" "github.com/stretchr/testify/assert" - "testing" ) func TestInitDefault(t *testing.T) { @@ -71,7 +72,7 @@ func TestWorkingDir(t *testing.T) { viper.Reset() defer viper.Reset() - viper.Set("WorkingDir", "/a/b/") + viper.Set("workingDir", "/a/b/") InitMemFs() |