summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2009-10-27 11:58:20 +0100
committerSebastian Thiel <byronimo@gmail.com>2009-10-27 11:58:20 +0100
commit22757ed7b58862cccef64fdc09f93ea1ac72b1d2 (patch)
tree943038de3caac80d35b774e33cb2899b2856bbdf /test
parent2792e534dd55fe03bca302f87a3ea638a7278bf1 (diff)
downloadgitpython-22757ed7b58862cccef64fdc09f93ea1ac72b1d2.tar.gz
put _make_file helper method into TestBase class
remote: prepared FetchInfo class to be returned by fetch and pull. About to implement tests
Diffstat (limited to 'test')
-rw-r--r--test/git/test_index.py16
-rw-r--r--test/git/test_remote.py11
-rw-r--r--test/testlib/helper.py13
3 files changed, 24 insertions, 16 deletions
diff --git a/test/git/test_index.py b/test/git/test_index.py
index 3312abe1..3345949b 100644
--- a/test/git/test_index.py
+++ b/test/git/test_index.py
@@ -199,6 +199,9 @@ class TestTree(TestBase):
def _count_existing(self, repo, files):
+ """
+ Returns count of files that actually exist in the repository directory.
+ """
existing = 0
basedir = repo.git.git_dir
for f in files:
@@ -207,19 +210,6 @@ class TestTree(TestBase):
return existing
# END num existing helper
-
- def _make_file(self, rela_path, data, repo=None):
- """
- Create a file at the given path relative to our repository, filled
- with the given data. Returns absolute path to created file.
- """
- repo = repo or self.rorepo
- abs_path = os.path.join(repo.git.git_dir, rela_path)
- fp = open(abs_path, "w")
- fp.write(data)
- fp.close()
- return abs_path
-
@with_rw_repo('0.1.6')
def test_index_mutation(self, rw_repo):
index = rw_repo.index
diff --git a/test/git/test_remote.py b/test/git/test_remote.py
index ef00056d..f1e25ebf 100644
--- a/test/git/test_remote.py
+++ b/test/git/test_remote.py
@@ -59,11 +59,18 @@ class TestRemote(TestBase):
assert remote.rename(prev_name).name == prev_name
# END for each rename ( back to prev_name )
- remote.fetch()
+ # FETCH TESTING
+ assert len(remote.fetch()) == 1
+
+
+ self.fail("rejected parsing")
+ self.fail("test parsing of each individual flag")
+ # PULL TESTING
+ # fails as we did not specify a branch and there is no configuration for it
self.failUnlessRaises(GitCommandError, remote.pull)
remote.pull('master')
remote.update()
- self.fail("test push once there is a test-repo")
+
# END for each remote
assert num_remotes
assert num_remotes == len(remote_set)
diff --git a/test/testlib/helper.py b/test/testlib/helper.py
index ab4b9f4e..d541a111 100644
--- a/test/testlib/helper.py
+++ b/test/testlib/helper.py
@@ -175,4 +175,15 @@ class TestBase(TestCase):
each test type has its own repository
"""
cls.rorepo = Repo(GIT_REPO)
-
+
+ def _make_file(self, rela_path, data, repo=None):
+ """
+ Create a file at the given path relative to our repository, filled
+ with the given data. Returns absolute path to created file.
+ """
+ repo = repo or self.rorepo
+ abs_path = os.path.join(repo.git.git_dir, rela_path)
+ fp = open(abs_path, "w")
+ fp.write(data)
+ fp.close()
+ return abs_path