module ActionMailbox::TestHelper

def receive_inbound_email_from_fixture(*args)

and immediately route it to processing.
Create an InboundEmail from fixture using the same arguments as create_inbound_email_from_fixture
def receive_inbound_email_from_fixture(*args)
  create_inbound_email_from_fixture(*args).tap(&:route)
end