summaryrefslogtreecommitdiffstats
path: root/common/hugo/hugo_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'common/hugo/hugo_test.go')
-rw-r--r--common/hugo/hugo_test.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/common/hugo/hugo_test.go b/common/hugo/hugo_test.go
index e252dffbe..e76d80000 100644
--- a/common/hugo/hugo_test.go
+++ b/common/hugo/hugo_test.go
@@ -68,6 +68,7 @@ type testConfig struct {
environment string
running bool
workingDir string
+ multihost bool
}
func (c testConfig) Environment() string {
@@ -81,3 +82,7 @@ func (c testConfig) Running() bool {
func (c testConfig) WorkingDir() string {
return c.workingDir
}
+
+func (c testConfig) IsMultihost() bool {
+ return c.multihost
+}