Charles P. Cross
ba8beb53b3
test(coverage): add tests to meet 45% CI threshold
Add comprehensive test coverage for previously untested functions:
internal/debug/debug_test.go:
- TestSetVerbose: tests SetVerbose() and its effect on Enabled()
- TestSetQuietAndIsQuiet: tests SetQuiet() and IsQuiet() functions
- TestPrintNormal: tests quiet mode suppression of normal output
- TestPrintlnNormal: tests quiet mode suppression of println output
internal/export/config_test.go (new file):
- TestLoadConfig: comprehensive tests for LoadConfig() including:
- Default values when no config exists
- Loading custom policies (both regular and auto-export)
- Loading retry attempts, backoff, skip encoding errors, write manifest
- Handling invalid/malformed config values gracefully
internal/export/policy_test.go:
- TestErrorPolicyString: tests String() method on ErrorPolicy
- TestNewManifest: tests manifest creation with proper defaults
- TestWriteManifest: tests manifest file writing and error handling
These tests bring coverage from 44.8% to 45.0%, meeting the CI threshold.