commit a7041e4a752b817782244d3f4615baaa8c2d7566
parent f057007c55c1f823ef7b8641f1773c121e254ee9
Author: Erik Loualiche <eloualic@umn.edu>
Date: Sun, 8 Mar 2026 15:23:43 -0400
test: verify DefaultTOML includes the include field
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Diffstat:
1 file changed, 4 insertions(+), 0 deletions(-)
diff --git a/internal/config/config_test.go b/internal/config/config_test.go
@@ -403,6 +403,10 @@ func TestDefaultTOML(t *testing.T) {
t.Errorf("DefaultTOML() missing section %q", section)
}
}
+ // Should document include field
+ if !containsString(toml, "include") {
+ t.Error("DefaultTOML() missing include field")
+ }
}
func containsString(s, substr string) bool {