Continue strings with backslash instead of append

This commit is contained in:
Ciro Santilli 2014-11-01 22:26:12 +01:00
parent 7371c9e2f4
commit 54ded5d95b
1 changed files with 3 additions and 3 deletions

View File

@ -26,11 +26,11 @@ describe SlackMessage do
it 'returns a message regarding pushes' do
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>)'
subject.attachments.should == [
{
text: "<url1|abcdefghi>: message1 - author1\n" <<
text: "<url1|abcdefghi>: message1 - author1\n"\
"<url2|123456789>: message2 - author2",
color: color,
}
@ -45,7 +45,7 @@ describe SlackMessage do
it 'returns a message regarding a new branch' do
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>'
subject.attachments.should be_empty
end