summaryrefslogtreecommitdiffstats
path: root/resources/page/page_matcher_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'resources/page/page_matcher_test.go')
-rw-r--r--resources/page/page_matcher_test.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/resources/page/page_matcher_test.go b/resources/page/page_matcher_test.go
index e659eb3b5..21f6891d7 100644
--- a/resources/page/page_matcher_test.go
+++ b/resources/page/page_matcher_test.go
@@ -160,6 +160,7 @@ type testConfig struct {
environment string
running bool
workingDir string
+ multihost bool
}
func (c testConfig) Environment() string {
@@ -174,6 +175,10 @@ func (c testConfig) WorkingDir() string {
return c.workingDir
}
+func (c testConfig) IsMultihost() bool {
+ return c.multihost
+}
+
func TestIsGlobWithExtension(t *testing.T) {
c := qt.New(t)