blob: c1c846275ceaca9ccb8b2588a90bd57dff5ed3cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
require File.dirname(__FILE__) + '/../spec_helper'
describe IncomingMessage, " when dealing with incoming mail" do
fixtures :incoming_messages, :raw_emails
before do
@im = incoming_messages(:useless_incoming_message)
end
it "should return the mail Date header date for sent at" do
@im.sent_at.should == @im.mail.date
end
it "should be able to parse emails with quoted commas in" do
em = "\"Clare College, Cambridge\" <test@test.test>"
TMail::Address.parse(em)
end
end
|