From 2faf600a695a8822e8c00a04b946b78dc4bafcba Mon Sep 17 00:00:00 2001 From: Guido Günther Date: Mon, 21 Nov 2011 23:11:27 +0100 Subject: Use GitArgs in GitRepository.{create,delete}_branch() --- tests/test_GitRepository.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'tests') diff --git a/tests/test_GitRepository.py b/tests/test_GitRepository.py index 235c758d..6bf40ee8 100644 --- a/tests/test_GitRepository.py +++ b/tests/test_GitRepository.py @@ -116,6 +116,20 @@ def test_create_branch(): >>> repo.create_branch("foo") """ +def test_delete_branch(): + """ + Create a branch named I{foo2} and delete it + + Methods tested: + - L{gbp.git.GitRepository.create_branch} + - L{gbp.git.GitRepository.delete_branch} + + >>> import gbp.git, shutil + >>> repo = gbp.git.GitRepository(repo_dir) + >>> repo.create_branch("bar") + >>> repo.delete_branch("bar") + """ + def test_set_branch(): """ -- cgit v1.2.3