diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2010-06-08 16:47:48 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2010-06-08 16:47:48 +0200 |
commit | 619c11787742ce00a0ee8f841cec075897873c79 (patch) | |
tree | 7cfcc718c049b26abedf280bebb6c65a6d6f619c /test/git/async/test_channel.py | |
parent | 53152a824f5186452504f0b68306d10ebebee416 (diff) | |
download | gitpython-619c11787742ce00a0ee8f841cec075897873c79.tar.gz |
Its getting better already - intermediate commit before further chaning the task class
Diffstat (limited to 'test/git/async/test_channel.py')
-rw-r--r-- | test/git/async/test_channel.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/test/git/async/test_channel.py b/test/git/async/test_channel.py index 25eb974c..ab4ae015 100644 --- a/test/git/async/test_channel.py +++ b/test/git/async/test_channel.py @@ -42,5 +42,9 @@ class TestChannels(TestBase): self.failUnlessRaises(IOError, wc.write, 1) # reading from a closed channel never blocks + print "preblock" assert len(rc.read()) == 0 - + print "got read(0)" + assert len(rc.read(5)) == 0 + assert len(rc.read(1)) == 0 + |