We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09a11c7 commit 2bfc2e9Copy full SHA for 2bfc2e9
git/test/db/py/test_loose.py
@@ -2,16 +2,18 @@
2
#
3
# This module is part of GitDB and is released under
4
# the New BSD License: http://www.opensource.org/licenses/bsd-license.php
5
-from lib import *
6
-from git.db.py import PureLooseObjectODB
+from git.test.db.lib import *
+from git.db.py.loose import PureLooseObjectODB
7
from git.exc import BadObject
8
from git.util import bin_to_hex
9
10
class TestLooseDB(TestDBBase):
11
12
+ RepoCls = PureLooseObjectODB
13
+
14
@with_rw_directory
15
def test_basics(self, path):
- ldb = PureLooseObjectODB(path)
16
+ ldb = self.RepoCls(path)
17
18
# write data
19
self._assert_object_writing(ldb)
0 commit comments