Tests passing

This commit is contained in:
Ask Solem 2011-06-29 12:08:48 +01:00
parent 9f00ccdcc8
commit 8537a359f6
2 changed files with 4 additions and 1 deletions

View File

@ -17,7 +17,7 @@ class Message(base.Message):
return super(Message, self).decode()
class Channel(object):
class Channel(base.StdChannel):
open = True
throw_decode_error = False

View File

@ -41,6 +41,9 @@ class Channel(virtual.Channel):
self.queues[queue].queue.clear()
return size
def after_reply_message_received(self, queue):
pass
class Transport(virtual.Transport):
Channel = Channel