aboutsummaryrefslogtreecommitdiff
path: root/internal/config/config_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/config/config_test.go')
-rw-r--r--internal/config/config_test.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/internal/config/config_test.go b/internal/config/config_test.go
index d2f3203..ff513ea 100644
--- a/internal/config/config_test.go
+++ b/internal/config/config_test.go
@@ -41,6 +41,9 @@ func TestWebDefaults(t *testing.T) {
if def.WebMono {
t.Errorf("WebMono default should be false")
}
+ if len(def.WebVersions) != 0 {
+ t.Errorf("WebVersions default should be empty, got %v", def.WebVersions)
+ }
if def.WebTheme != "transfiguration" {
t.Errorf("WebTheme default wrong: got %q, want %q", def.WebTheme, "transfiguration")
}