Commit 3d23899c authored by Jarka Kadlecova's avatar Jarka Kadlecova

Resolve conflicts in git_push_service_spec

parent 9693e220
...@@ -536,7 +536,6 @@ describe GitPushService, services: true do ...@@ -536,7 +536,6 @@ describe GitPushService, services: true do
let(:message) { "this is some work.\n\ncloses #1" } let(:message) { "this is some work.\n\ncloses #1" }
it "does not initiates one api call to jira server to close the issue" do it "does not initiates one api call to jira server to close the issue" do
<<<<<<< HEAD
execute_service(project, commit_author, oldrev, newrev, ref ) execute_service(project, commit_author, oldrev, newrev, ref )
expect(WebMock).not_to have_requested(:post, jira_api_transition_url('JIRA-1')) expect(WebMock).not_to have_requested(:post, jira_api_transition_url('JIRA-1'))
...@@ -563,34 +562,6 @@ describe GitPushService, services: true do ...@@ -563,34 +562,6 @@ describe GitPushService, services: true do
it "initiates one api call to jira server to comment on the jira issue" do it "initiates one api call to jira server to comment on the jira issue" do
execute_service(project, commit_author, oldrev, newrev, ref ) execute_service(project, commit_author, oldrev, newrev, ref )
=======
execute_service(project, commit_author, @oldrev, @newrev, @ref )
expect(WebMock).not_to have_requested(:post, jira_api_transition_url('JIRA-1'))
end
it "does not initiates one api call to jira server to comment on the issue" do
execute_service(project, commit_author, @oldrev, @newrev, @ref )
expect(WebMock).not_to have_requested(:post, jira_api_comment_url('JIRA-1')).with(
body: comment_body
).once
end
end
context 'when internal issues are enabled' do
let(:issue) { create(:issue, project: project) }
let(:message) { "this is some work.\n\ncloses JIRA-1 \n\n closes #{issue.to_reference}" }
it "initiates one api call to jira server to close the jira issue" do
execute_service(project, commit_author, @oldrev, @newrev, @ref )
expect(WebMock).to have_requested(:post, jira_api_transition_url('JIRA-1')).once
end
it "initiates one api call to jira server to comment on the jira issue" do
execute_service(project, commit_author, @oldrev, @newrev, @ref )
>>>>>>> d964816b9fe56679ffc0b331e701f7b24db5c6a9
expect(WebMock).to have_requested(:post, jira_api_comment_url('JIRA-1')).with( expect(WebMock).to have_requested(:post, jira_api_comment_url('JIRA-1')).with(
body: comment_body body: comment_body
...@@ -598,22 +569,14 @@ describe GitPushService, services: true do ...@@ -598,22 +569,14 @@ describe GitPushService, services: true do
end end
it "closes the internal issue" do it "closes the internal issue" do
<<<<<<< HEAD
execute_service(project, commit_author, oldrev, newrev, ref ) execute_service(project, commit_author, oldrev, newrev, ref )
=======
execute_service(project, commit_author, @oldrev, @newrev, @ref )
>>>>>>> d964816b9fe56679ffc0b331e701f7b24db5c6a9
expect(issue.reload).to be_closed expect(issue.reload).to be_closed
end end
it "adds a note indicating that the issue is now closed" do it "adds a note indicating that the issue is now closed" do
expect(SystemNoteService).to receive(:change_status) expect(SystemNoteService).to receive(:change_status)
.with(issue, project, commit_author, "closed", closing_commit) .with(issue, project, commit_author, "closed", closing_commit)
<<<<<<< HEAD
execute_service(project, commit_author, oldrev, newrev, ref ) execute_service(project, commit_author, oldrev, newrev, ref )
=======
execute_service(project, commit_author, @oldrev, @newrev, @ref )
>>>>>>> d964816b9fe56679ffc0b331e701f7b24db5c6a9
end end
end end
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