describe BunnyMock do context '::new' do it 'should return a new session' do expect(BunnyMock.new.class).to eq(BunnyMock::Session) end end context '::version' do it 'should return the current version' do expect(BunnyMock::VERSION).to_not be_nil expect(BunnyMock.version).to_not be_nil end end context '::protocol_version' do it 'should return the current amq protocol version' do expect(BunnyMock::PROTOCOL_VERSION).to eq('0.9.1') expect(BunnyMock.protocol_version).to eq('0.9.1') end end it 'should route messages from exchanges' do channel = BunnyMock.new.start.channel xchg = channel.topic 'xchg.topic' queue = channel.queue 'queue.test' queue.bind xchg xchg.publish('Routed message', routing_key: '*.test') end end