summaryrefslogtreecommitdiff
path: root/test/git/test_index.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/git/test_index.py')
-rw-r--r--test/git/test_index.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/git/test_index.py b/test/git/test_index.py
new file mode 100644
index 00000000..f58405d2
--- /dev/null
+++ b/test/git/test_index.py
@@ -0,0 +1,17 @@
+# test_index.py
+# Copyright (C) 2008, 2009 Michael Trier (mtrier@gmail.com) and contributors
+#
+# This module is part of GitPython and is released under
+# the BSD License: http://www.opensource.org/licenses/bsd-license.php
+
+from test.testlib import *
+from git import *
+
+class TestTree(TestCase):
+
+ @classmethod
+ def setUpAll(cls):
+ cls.repo = Repo(GIT_REPO)
+
+ def test_base(self):
+ self.fail("TODO")