I have Bunny code that does manual acknowledgement of messages by passing manual_ack: true into the pop method of the Queue class. This allows the message to be redelivered if the consumer class fails to completely process the message.
To make this work, my code must manually acknowledge successful completion of message processing. It does this using the Channel class's acknowledge or ack method. That method is not currently implemented in the BunnyMock::Channel class.
Is is possible to add some sort of rudimentary mocking support for message acknowledgement methods?