diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2014-02-10 21:40:53 +0100 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2014-02-10 21:40:53 +0100 |
commit | 1cb02ebcaa4891c01a1d6cba11a3cd9806fad782 (patch) | |
tree | 51130c659e5089434e84404940ed1451f6c5d5cc /git/test/db/py/test_loose.py | |
parent | 660bdca125aa9dcca7a7730535bec433edb8ba02 (diff) | |
parent | f77230f618722e964a76657ebb03d822b2f73518 (diff) | |
download | gitpython-1cb02ebcaa4891c01a1d6cba11a3cd9806fad782.tar.gz |
Merge branch 'feature/spaces-and-cleanup-master'
* feature/spaces-and-cleanup-master:
Basic fixes to get tests back on track. Of course there is much more work to be done here
removed leftover gitdb - I thought it was merged into git
tabs to 4 spaces - overall state of this branch is desolate, but fixable. Needs plenty of work
Diffstat (limited to 'git/test/db/py/test_loose.py')
-rw-r--r-- | git/test/db/py/test_loose.py | 54 |
1 files changed, 27 insertions, 27 deletions
diff --git a/git/test/db/py/test_loose.py b/git/test/db/py/test_loose.py index 0c9b4831..cfb0ca3a 100644 --- a/git/test/db/py/test_loose.py +++ b/git/test/db/py/test_loose.py @@ -6,31 +6,31 @@ from git.test.db.lib import TestDBBase, with_rw_directory from git.db.py.loose import PureLooseObjectODB from git.exc import BadObject from git.util import bin_to_hex - + class TestLooseDB(TestDBBase): - - needs_ro_repo = False - - @with_rw_directory - def test_basics(self, path): - ldb = PureLooseObjectODB(path) - - # write data - self._assert_object_writing(ldb) - self._assert_object_writing_async(ldb) - - # verify sha iteration and size - shas = list(ldb.sha_iter()) - assert shas and len(shas[0]) == 20 - - assert len(shas) == ldb.size() - - # verify find short object - long_sha = bin_to_hex(shas[-1]) - for short_sha in (long_sha[:20], long_sha[:5]): - assert bin_to_hex(ldb.partial_to_complete_sha_hex(short_sha)) == long_sha - # END for each sha - - self.failUnlessRaises(BadObject, ldb.partial_to_complete_sha_hex, '0000') - # raises if no object could be foudn - + + needs_ro_repo = False + + @with_rw_directory + def test_basics(self, path): + ldb = PureLooseObjectODB(path) + + # write data + self._assert_object_writing(ldb) + self._assert_object_writing_async(ldb) + + # verify sha iteration and size + shas = list(ldb.sha_iter()) + assert shas and len(shas[0]) == 20 + + assert len(shas) == ldb.size() + + # verify find short object + long_sha = bin_to_hex(shas[-1]) + for short_sha in (long_sha[:20], long_sha[:5]): + assert bin_to_hex(ldb.partial_to_complete_sha_hex(short_sha)) == long_sha + # END for each sha + + self.failUnlessRaises(BadObject, ldb.partial_to_complete_sha_hex, '0000') + # raises if no object could be foudn + |