Commit 652f4c80 authored by Robert Schilling's avatar Robert Schilling

Merge pull request #8222 from cirosantilli/concat-with-backslash

Continue strings with backslash instead of append
parents 0269cd3a 54ded5d9
...@@ -26,11 +26,11 @@ describe SlackMessage do ...@@ -26,11 +26,11 @@ describe SlackMessage do
it 'returns a message regarding pushes' do it 'returns a message regarding pushes' do
subject.pretext.should == subject.pretext.should ==
'user_name pushed to branch <url/commits/master|master> of ' << 'user_name pushed to branch <url/commits/master|master> of '\
'<url|project_name> (<url/compare/before...after|Compare changes>)' '<url|project_name> (<url/compare/before...after|Compare changes>)'
subject.attachments.should == [ subject.attachments.should == [
{ {
text: "<url1|abcdefghi>: message1 - author1\n" << text: "<url1|abcdefghi>: message1 - author1\n"\
"<url2|123456789>: message2 - author2", "<url2|123456789>: message2 - author2",
color: color, color: color,
} }
...@@ -45,7 +45,7 @@ describe SlackMessage do ...@@ -45,7 +45,7 @@ describe SlackMessage do
it 'returns a message regarding a new branch' do it 'returns a message regarding a new branch' do
subject.pretext.should == subject.pretext.should ==
'user_name pushed new branch <url/commits/master|master> to ' << 'user_name pushed new branch <url/commits/master|master> to '\
'<url|project_name>' '<url|project_name>'
subject.attachments.should be_empty subject.attachments.should be_empty
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment