summaryrefslogtreecommitdiff
path: root/test/git/test_odb.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/git/test_odb.py')
-rw-r--r--test/git/test_odb.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/git/test_odb.py b/test/git/test_odb.py
new file mode 100644
index 00000000..6f92a5c1
--- /dev/null
+++ b/test/git/test_odb.py
@@ -0,0 +1,12 @@
+"""Test for object db"""
+
+from test.testlib import *
+from git.odb.db import *
+
+
+class TestDB(TestBase):
+ """Test the different db class implementations"""
+
+ def test_loose_db(self):
+ self.fail("todo")
+