blob: 32705ce9d0ede0d326389a19b69bfe6dcb5d852f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
require File.dirname(__FILE__) + '/../spec_helper'
describe OutgoingMessage, " when making an outgoing message" do
before do
@outgoing_message = OutgoingMessage.new({
:status => 'ready',
:message_type => 'initial_request',
:body => 'This request contains a foo@bar.com email address',
:last_sent_at => Time.now(),
:what_doing => 'normal_sort'
})
end
it "should not index the email addresses" do
# also used for track emails
@outgoing_message.get_text_for_indexing.should_not include("foo@bar.com")
end
it "should not display email addresses on page" do
@outgoing_message.get_body_for_html_display.should_not include("foo@bar.com")
end
it "should link to help page where email address was" do
@outgoing_message.get_body_for_html_display.should have_tag('a[href="/help/about#mobiles"]', :text => 'email address')
end
it "should include email addresses in outgoing messages" do
@outgoing_message.body.should include("foo@bar.com")
end
end
|