summaryrefslogtreecommitdiff
path: root/test/git/test_index.py
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/git/test_index.py
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/git/test_index.py')
-rw-r--r--test/git/test_index.py16
1 files changed, 3 insertions, 13 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