blob: 6f92a5c18ca63fbd83c9ccd781a9c3aee980f8b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
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")
|