Remove extraneous tests from Issues API spec
These were all testing an implementation detail of `Issues::UpdateService` which is already well-tested and doesn't need to be re-tested here. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/25201
This commit is contained in:
parent
8cfa5ccf53
commit
f23a57b0c5
2 changed files with 2 additions and 50 deletions
|
@ -1,6 +1,6 @@
|
|||
require 'spec_helper'
|
||||
|
||||
describe API::Issues, :mailer do
|
||||
describe API::Issues do
|
||||
set(:user) { create(:user) }
|
||||
set(:project) do
|
||||
create(:project, :public, creator_id: user.id, namespace: user.namespace)
|
||||
|
@ -932,18 +932,6 @@ describe API::Issues, :mailer do
|
|||
expect(json_response['error']).to eq('confidential is invalid')
|
||||
end
|
||||
|
||||
it "sends notifications for subscribers of newly added labels" do
|
||||
label = project.labels.first
|
||||
label.toggle_subscription(user2, project)
|
||||
|
||||
perform_enqueued_jobs do
|
||||
post api("/projects/#{project.id}/issues", user),
|
||||
title: 'new issue', labels: label.title
|
||||
end
|
||||
|
||||
should_email(user2)
|
||||
end
|
||||
|
||||
it "returns a 400 bad request if title not given" do
|
||||
post api("/projects/#{project.id}/issues", user), labels: 'label, label2'
|
||||
expect(response).to have_gitlab_http_status(400)
|
||||
|
@ -1246,18 +1234,6 @@ describe API::Issues, :mailer do
|
|||
expect(json_response['labels']).to eq([label.title])
|
||||
end
|
||||
|
||||
it "sends notifications for subscribers of newly added labels when issue is updated" do
|
||||
label = create(:label, title: 'foo', color: '#FFAABB', project: project)
|
||||
label.toggle_subscription(user2, project)
|
||||
|
||||
perform_enqueued_jobs do
|
||||
put api("/projects/#{project.id}/issues/#{issue.iid}", user),
|
||||
title: 'updated title', labels: label.title
|
||||
end
|
||||
|
||||
should_email(user2)
|
||||
end
|
||||
|
||||
it 'removes all labels' do
|
||||
put api("/projects/#{project.id}/issues/#{issue.iid}", user), labels: ''
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
require 'spec_helper'
|
||||
|
||||
describe API::V3::Issues, :mailer do
|
||||
describe API::V3::Issues do
|
||||
set(:user) { create(:user) }
|
||||
set(:user2) { create(:user) }
|
||||
set(:non_member) { create(:user) }
|
||||
|
@ -780,18 +780,6 @@ describe API::V3::Issues, :mailer do
|
|||
expect(json_response['error']).to eq('confidential is invalid')
|
||||
end
|
||||
|
||||
it "sends notifications for subscribers of newly added labels" do
|
||||
label = project.labels.first
|
||||
label.toggle_subscription(user2, project)
|
||||
|
||||
perform_enqueued_jobs do
|
||||
post v3_api("/projects/#{project.id}/issues", user),
|
||||
title: 'new issue', labels: label.title
|
||||
end
|
||||
|
||||
should_email(user2)
|
||||
end
|
||||
|
||||
it "returns a 400 bad request if title not given" do
|
||||
post v3_api("/projects/#{project.id}/issues", user), labels: 'label, label2'
|
||||
|
||||
|
@ -1045,18 +1033,6 @@ describe API::V3::Issues, :mailer do
|
|||
expect(json_response['labels']).to eq([label.title])
|
||||
end
|
||||
|
||||
it "sends notifications for subscribers of newly added labels when issue is updated" do
|
||||
label = create(:label, title: 'foo', color: '#FFAABB', project: project)
|
||||
label.toggle_subscription(user2, project)
|
||||
|
||||
perform_enqueued_jobs do
|
||||
put v3_api("/projects/#{project.id}/issues/#{issue.id}", user),
|
||||
title: 'updated title', labels: label.title
|
||||
end
|
||||
|
||||
should_email(user2)
|
||||
end
|
||||
|
||||
it 'removes all labels' do
|
||||
put v3_api("/projects/#{project.id}/issues/#{issue.id}", user), labels: ''
|
||||
|
||||
|
|
Loading…
Reference in a new issue