blob: 7b9e1b49545911cfca0ae9c0bb5719936a136a9c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# This is a test of the monkey patches in lib/fcgi_fixes.rb
require File.dirname(__FILE__) + '/../spec_helper'
describe "when using TMail" do
it "should load an email with funny MIME settings" do
# just send it to the holding pen
InfoRequest.holding_pen_request.incoming_messages.size.should == 0
receive_incoming_mail("humberside-police-odd-mime-type.email", 'dummy')
InfoRequest.holding_pen_request.incoming_messages.size.should == 1
incoming_message = InfoRequest.holding_pen_request.incoming_messages[0]
# This will raise an error if the bug in TMail hasn't been fixed
incoming_message.get_body_for_html_display()
end
end
|