summaryrefslogtreecommitdiff
path: root/gitdb/test/test_example.py
diff options
context:
space:
mode:
authorKevin Brown <kevin@kevinbrown.in>2014-07-13 15:35:24 -0400
committerKevin Brown <kevin@kevinbrown.in>2014-07-13 15:35:24 -0400
commit1c6f4c19289732bd13507eba9e54c9d692957137 (patch)
tree88840df38e1f1b021868803bc743a5ab3b55a327 /gitdb/test/test_example.py
parent72167492334b756ddeaa606274e9348a70734cdb (diff)
downloadgitdb-1c6f4c19289732bd13507eba9e54c9d692957137.tar.gz
Automated PEP 8 fixes
Diffstat (limited to 'gitdb/test/test_example.py')
-rw-r--r--gitdb/test/test_example.py26
1 files changed, 13 insertions, 13 deletions
diff --git a/gitdb/test/test_example.py b/gitdb/test/test_example.py
index 611ae42..f45063b 100644
--- a/gitdb/test/test_example.py
+++ b/gitdb/test/test_example.py
@@ -11,17 +11,17 @@ from gitdb.util import pool
from cStringIO import StringIO
from async import IteratorReader
-
+
class TestExamples(TestBase):
-
+
def test_base(self):
ldb = LooseObjectDB(fixture_path("../../../.git/objects"))
-
+
for sha1 in ldb.sha_iter():
oinfo = ldb.info(sha1)
ostream = ldb.stream(sha1)
assert oinfo[:3] == ostream[:3]
-
+
assert len(ostream.read()) == ostream.size
assert ldb.has_object(oinfo.binsha)
# END for each sha in database
@@ -32,33 +32,33 @@ class TestExamples(TestBase):
except UnboundLocalError:
pass
# END ignore exception if there are no loose objects
-
+
data = "my data"
istream = IStream("blob", len(data), StringIO(data))
-
+
# the object does not yet have a sha
assert istream.binsha is None
ldb.store(istream)
# now the sha is set
assert len(istream.binsha) == 20
assert ldb.has_object(istream.binsha)
-
-
+
+
# async operation
# Create a reader from an iterator
reader = IteratorReader(ldb.sha_iter())
-
+
# get reader for object streams
info_reader = ldb.stream_async(reader)
-
+
# read one
info = info_reader.read(1)[0]
-
+
# read all the rest until depletion
ostreams = info_reader.read()
-
+
# set the pool to use two threads
pool.set_size(2)
-
+
# synchronize the mode of operation
pool.set_size(0)