diff options
Diffstat (limited to 'resources/page/page_matcher_test.go')
-rw-r--r-- | resources/page/page_matcher_test.go | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/resources/page/page_matcher_test.go b/resources/page/page_matcher_test.go index 21f6891d7..3ab68e8af 100644 --- a/resources/page/page_matcher_test.go +++ b/resources/page/page_matcher_test.go @@ -157,10 +157,11 @@ func TestDecodeCascadeConfig(t *testing.T) { } type testConfig struct { - environment string - running bool - workingDir string - multihost bool + environment string + running bool + workingDir string + multihost bool + multilingual bool } func (c testConfig) Environment() string { @@ -179,6 +180,10 @@ func (c testConfig) IsMultihost() bool { return c.multihost } +func (c testConfig) IsMultiLingual() bool { + return c.multilingual +} + func TestIsGlobWithExtension(t *testing.T) { c := qt.New(t) |