We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a71801 commit df33a2fCopy full SHA for df33a2f
tests/cmd/test_git.py
@@ -526,6 +526,11 @@ def test_branch_ls_filters(git_repo: GitSync) -> None:
526
sorted_branches = git_repo.cmd.branches.ls(sort="refname")
527
assert isinstance(sorted_branches, list)
528
529
+ # Test with --verbose (should still extract branch names correctly)
530
+ verbose_branches = git_repo.cmd.branches.ls(verbose=True)
531
+ assert isinstance(verbose_branches, list)
532
+ assert any(b.branch_name == "master" for b in verbose_branches)
533
+
534
535
# =============================================================================
536
# GitRemoteCmd Tests
0 commit comments