aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/mailbox/routing_test.rb
blob: bdb670e9567cb73ea2bc31436bc83536dd08155a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require_relative '../../test_helper'

class ApplicationMailbox < ActionMailroom::Mailbox
  routing "replies@example.com" => :replies
end

class RepliesMailbox < ActionMailroom::Mailbox
  def process
    $processed = mail.subject
  end
end

class ActionMailroom::Mailbox::RoutingTest < ActiveSupport::TestCase
  setup do
    $processed = false
    @inbound_email = create_inbound_email("welcome.eml")
  end

  test "string routing" do
    ApplicationMailbox.route @inbound_email
    assert_equal "Discussion: Let's debate these attachments", $processed
  end
end