Sha256: 84cec7d01cd41389ca1d1a8cfe7c2d81e122587db614db83d83b4402a38273c3
Contents?: true
Size: 830 Bytes
Versions: 1
Compression:
Stored size: 830 Bytes
Contents
require "test_helper" ActionMailbox::Ingresses::Amazon::InboundEmailsController.verifier = Module.new { def self.authentic?(message); true; end } class ActionMailbox::Ingresses::Amazon::InboundEmailsControllerTest < ActionDispatch::IntegrationTest setup { ActionMailbox.ingress = :amazon } test "receiving an inbound email from Amazon" do assert_difference -> { ActionMailbox::InboundEmail.count }, +1 do post rails_amazon_inbound_emails_url, params: { content: file_fixture("../files/welcome.eml").read }, as: :json end assert_response :no_content inbound_email = ActionMailbox::InboundEmail.last assert_equal file_fixture("../files/welcome.eml").read, inbound_email.raw_email.download assert_equal "0CB459E0-0336-41DA-BC88-E6E28C697DDB@37signals.com", inbound_email.message_id end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
actionmailbox-0.1.0 | test/controllers/ingresses/amazon/inbound_emails_controller_test.rb |