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 3163699 commit 9766996Copy full SHA for 9766996
test/test_checkout.py
@@ -45,3 +45,7 @@ def test_checkout_b(xtl_clone, git2cpp_path, tmp_path, run_in_tmp_path):
45
checkout_cmd[2] = 'master'
46
p_checkout2 = subprocess.run(checkout_cmd, cwd=xtl_path, text=True)
47
assert p_checkout2.returncode == 0
48
+
49
+ p_branch2 = subprocess.run(branch_cmd, capture_output=True, cwd=xtl_path, text=True)
50
+ assert p_branch2.returncode == 0
51
+ assert(p_branch2.stdout == ' foregone\n* master\n')
0 commit comments