summaryrefslogtreecommitdiff
path: root/spec/services/system_note_service_spec.rb
diff options
context:
space:
mode:
authorMatthew Dodds <matthewrusselldodds@gmail.com>2016-09-30 11:00:03 -0400
committerMatthew Dodds <matthewrusselldodds@gmail.com>2016-09-30 11:00:03 -0400
commit0c0b6f438ee5ac12f9975fb1c3b1dc93f6447015 (patch)
tree5cb80e277d25071a45628b0b91342f13be94b38f /spec/services/system_note_service_spec.rb
parentec82cecf3c54cb2cd1ab7b72f77e787be1bf1264 (diff)
downloadgitlab-ce-0c0b6f438ee5ac12f9975fb1c3b1dc93f6447015.tar.gz
Refactor url_helpers for system note service and remove duplication of logic in spec
Diffstat (limited to 'spec/services/system_note_service_spec.rb')
-rw-r--r--spec/services/system_note_service_spec.rb18
1 files changed, 5 insertions, 13 deletions
diff --git a/spec/services/system_note_service_spec.rb b/spec/services/system_note_service_spec.rb
index 16e345501d9..b16840a1238 100644
--- a/spec/services/system_note_service_spec.rb
+++ b/spec/services/system_note_service_spec.rb
@@ -41,34 +41,26 @@ describe SystemNoteService, services: true do
let(:note_lines) { subject.note.split("\n").reject(&:blank?) }
describe 'comparison diff link line' do
- it 'adds the comparison link' do
- link = Gitlab::Routing.url_helpers.diffs_namespace_project_merge_request_url(
- project.namespace,
- project,
- noteable.iid,
- diff_id: noteable.merge_request_diff.id,
- start_sha: oldrev
- )
-
- expect(note_lines[0]).to eq "[Compare with previous version](#{link})"
+ it 'adds the comparison text' do
+ expect(note_lines[2]).to match "[Compare with previous version]"
end
end
context 'without existing commits' do
it 'adds a message header' do
- expect(note_lines[1]).to eq "Added #{new_commits.size} commits:"
+ expect(note_lines[0]).to eq "Added #{new_commits.size} commits:"
end
it 'adds a message line for each commit' do
new_commits.each_with_index do |commit, i|
# Skip the header
- expect(note_lines[i + 2]).to eq "* #{commit.short_id} - #{commit.title}"
+ expect(note_lines[i + 1]).to eq "* #{commit.short_id} - #{commit.title}"
end
end
end
describe 'summary line for existing commits' do
- let(:summary_line) { note_lines[2] }
+ let(:summary_line) { note_lines[1] }
context 'with one existing commit' do
let(:old_commits) { [noteable.commits.last] }