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

module ActionMailroom
  class InboundEmailTest < ActiveSupport::TestCase
    test "message id is extracted from raw email" do
      inbound_email = create_inbound_email_from_fixture("welcome.eml")
      assert_equal "0CB459E0-0336-41DA-BC88-E6E28C697DDB@37signals.com", inbound_email.message_id
    end
  end
end