diff options
| author | Kevin Brown <kevin@kevinbrown.in> | 2014-07-13 15:35:24 -0400 |
|---|---|---|
| committer | Kevin Brown <kevin@kevinbrown.in> | 2014-07-13 15:35:24 -0400 |
| commit | 1c6f4c19289732bd13507eba9e54c9d692957137 (patch) | |
| tree | 88840df38e1f1b021868803bc743a5ab3b55a327 /gitdb/test/db/test_loose.py | |
| parent | 72167492334b756ddeaa606274e9348a70734cdb (diff) | |
| download | gitdb-1c6f4c19289732bd13507eba9e54c9d692957137.tar.gz | |
Automated PEP 8 fixes
Diffstat (limited to 'gitdb/test/db/test_loose.py')
| -rw-r--r-- | gitdb/test/db/test_loose.py | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/gitdb/test/db/test_loose.py b/gitdb/test/db/test_loose.py index d7e1d01..e295db5 100644 --- a/gitdb/test/db/test_loose.py +++ b/gitdb/test/db/test_loose.py @@ -6,29 +6,28 @@ from lib import * from gitdb.db import LooseObjectDB from gitdb.exc import BadObject from gitdb.util import bin_to_hex - + class TestLooseDB(TestDBBase): - + @with_rw_directory def test_basics(self, path): ldb = LooseObjectDB(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 - |
