Customer matcher for verifying a message was received with a specific
routing key (matches exactly, no wildcards)
queue.bind(exchange).subscribe {|msg| msg}
exchange.publish msg, :key => 'foo.bar.baz'
queue.should have_received_routing_key('foo.bar.baz')