diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2009-10-20 12:24:47 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2009-10-20 12:24:47 +0200 |
commit | 4a534eba97db3c2cfb2926368756fd633d25c056 (patch) | |
tree | b221f0ba3114cbfd8abe8432a91770578483565d /test/git/test_index.py | |
parent | 35a09c0534e89b2d43ec4101a5fb54576b577905 (diff) | |
download | gitpython-4a534eba97db3c2cfb2926368756fd633d25c056.tar.gz |
Added frame for index implementation and testing
Diffstat (limited to 'test/git/test_index.py')
-rw-r--r-- | test/git/test_index.py | 17 |
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") |