aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/test_GitRepository.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/test_GitRepository.py b/tests/test_GitRepository.py
index 50b733db..7eaae1e3 100644
--- a/tests/test_GitRepository.py
+++ b/tests/test_GitRepository.py
@@ -117,6 +117,8 @@ def test_create_branch():
>>> repo.create_branch("foo")
>>> repo.branch_contains("foo", 'HEAD')
True
+ >>> repo.branch_contains("doesnotexist", 'HEAD', remote=True)
+ False
"""
def test_delete_branch():