aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/inbound_email/deliver_to_mailroom_test.rb
blob: ff67057cb8ab7a56e9f8d834b5a628422d823551 (plain) (blame)
1
2
3
4
5
6
7
8
9
require_relative '../../test_helper'

class ActionMailroom::InboundEmail::DeliverToMailroomTest < ActiveSupport::TestCase
  test "pending emails are delivered to the mailroom" do
    assert_enqueued_jobs 1, only: ActionMailroom::DeliverInboundEmailToMailroomJob do
      create_inbound_email("welcome.eml", status: :pending)
    end
  end
end