SPACK-87: enable disabled git fetch tests.

This commit is contained in:
Todd Gamblin 2015-05-18 11:32:15 -07:00
parent b2f46c703d
commit 09151785b3

View file

@ -109,7 +109,7 @@ def test_fetch_master(self):
}) })
def ztest_fetch_branch(self): def test_fetch_branch(self):
"""Test fetching a branch.""" """Test fetching a branch."""
self.try_fetch(self.repo.branch, self.repo.branch_file, { self.try_fetch(self.repo.branch, self.repo.branch_file, {
'git' : self.repo.path, 'git' : self.repo.path,
@ -117,7 +117,7 @@ def ztest_fetch_branch(self):
}) })
def ztest_fetch_tag(self): def test_fetch_tag(self):
"""Test fetching a tag.""" """Test fetching a tag."""
self.try_fetch(self.repo.tag, self.repo.tag_file, { self.try_fetch(self.repo.tag, self.repo.tag_file, {
'git' : self.repo.path, 'git' : self.repo.path,
@ -125,7 +125,7 @@ def ztest_fetch_tag(self):
}) })
def ztest_fetch_commit(self): def test_fetch_commit(self):
"""Test fetching a particular commit.""" """Test fetching a particular commit."""
self.try_fetch(self.repo.r1, self.repo.r1_file, { self.try_fetch(self.repo.r1, self.repo.r1_file, {
'git' : self.repo.path, 'git' : self.repo.path,