summaryrefslogtreecommitdiff
path: root/test/git/test_config.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2009-10-18 23:15:55 +0200
committerSebastian Thiel <byronimo@gmail.com>2009-10-18 23:15:55 +0200
commit9513aa01fab73f53e4fe18644c7d5b530a66c6a1 (patch)
treeb5f9113b04215d1cc31d91fd7a1ef05e3b90c441 /test/git/test_config.py
parent657a57adbff49c553752254c106ce1d5b5690cf8 (diff)
downloadgitpython-9513aa01fab73f53e4fe18644c7d5b530a66c6a1.tar.gz
Added frame for configuration reader involving a meta class, decorators and tests - most of which still has to be filled out
Diffstat (limited to 'test/git/test_config.py')
-rw-r--r--test/git/test_config.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/test/git/test_config.py b/test/git/test_config.py
new file mode 100644
index 00000000..ab08544f
--- /dev/null
+++ b/test/git/test_config.py
@@ -0,0 +1,18 @@
+# test_config.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 TestBase(TestCase):
+
+ @classmethod
+ def setUpAll(cls):
+ cls.repo = Repo(GIT_REPO)
+
+ def test_base(self):
+ path = fixture_path("git_config")
+ self.fail("TODO: Base config writer testing")