aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2011-10-31 11:30:56 +0100
committerGuido Günther <agx@sigxcpu.org>2011-11-06 17:30:43 +0100
commitab744d5c452685b4a21559d1a2dcff8d033011bd (patch)
tree469a708cec8d8a86e25bb5770ffd4111ffe5a825 /tests
parent68bb3f0ed95b7a8b2488317ff4142507a11d924f (diff)
GitRepository: fix fetch invocation without repo
Diffstat (limited to 'tests')
-rw-r--r--tests/test_GitRepository.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/test_GitRepository.py b/tests/test_GitRepository.py
index dd713c12..f7e5e97a 100644
--- a/tests/test_GitRepository.py
+++ b/tests/test_GitRepository.py
@@ -333,6 +333,19 @@ def test_pull():
>>> clone.pull()
"""
+def test_fetch():
+ """
+ Fetch from a remote repository
+
+ Methods tested:
+ - L{gbp.git.GitRepository.fetch}
+
+ >>> import gbp.git, os
+ >>> d = os.path.join(clone_dir, 'gbp_%s_test_repo' % __name__)
+ >>> clone = gbp.git.GitRepository(d)
+ >>> clone.fetch()
+ """
+
def test_create_bare():
"""
Create a bare repository