-
Notifications
You must be signed in to change notification settings - Fork 0
test: complete test int #35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR introduces additional test cases for the fold command by adding new YAML configuration files and associated fixed-width data files. It also updates the test harness to point to the correct file paths and extends dependency management in go.mod.
- Added test data schemas and configuration files for nested, multiple field, and simple record cases.
- Updated file references in the test runner (fold_test.go) for the new complete test cases.
- Extended go.mod with new dependencies to support additional test coverage.
Reviewed Changes
Copilot reviewed 80 out of 80 changed files in this pull request and generated 4 comments.
Show a summary per file
| File | Description |
|---|---|
| internal/appli/command/testdata/fold/04-nested/schema.yaml | Added nested schema definition for PERSON and EMPLOYMENT records. |
| internal/appli/command/testdata/fold/04-nested.yaml | Added configuration for nested record test with separator. |
| internal/appli/command/testdata/fold/03-multiple/*.yaml and files | Added schema and test data for multiple field record test without separator. |
| internal/appli/command/testdata/fold/02-simple-separator/* | Added schema, test configuration and fixed-width data for a record test with newline separator. |
| internal/appli/command/testdata/fold/01-simple/* | Added schema, test configuration and fixed-width data for a record test without separator. |
| internal/appli/command/fold_test.go | Updated file paths in test harness to use new complete test files. |
| internal/appli/command/command_test.go | Added helper functions to load and run command tests from file. |
| go.mod | Extended dependency list with new test-related modules. |
No description provided.