[Test Improver] test: expand unit tests for list command (42% -> 100%)#444
Draft
danielmeppiel wants to merge 2 commits intomainfrom
Draft
[Test Improver] test: expand unit tests for list command (42% -> 100%)#444danielmeppiel wants to merge 2 commits intomainfrom
danielmeppiel wants to merge 2 commits intomainfrom
Conversation
Add 12 new tests covering list_cmd.py paths previously untested: - No scripts found: warning shown with rich panel + fallback (ImportError/NameError) - Scripts found: rich table rendered with default 'start' annotation - Scripts found: fallback text when no console or rich raises - Multiple scripts all shown in fallback - Exception handling: sys.exit(1) with error message Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🤖 Test Improver - automated AI assistant
Goal and Rationale
list_cmd.pyis user-facing (shows available scripts to developers) but was only 42% covered. The untested paths included the "no scripts found" case, the Rich table rendering branch, and exception handling. These are all exercised regularly by users.Approach
Extended the existing
tests/unit/test_list_command.py(which had 1 test) with 12 additional tests covering:ImportError/NameErrorstartannotated as defaultstartscript: no "default script" annotation_list_available_scripts:sys.exit(1)and error message shownCoverage Impact
src/apm_cli/commands/list_cmd.pyTest Status
All 3041 unit tests pass:
Reproducibility