summaryrefslogtreecommitdiff
path: root/spec/requests
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-02-25 17:47:20 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2022-02-25 17:47:20 +0000
commit84e5e90406ad42b1fb83f7495c05fd22cc5fbbd2 (patch)
tree6722895ba9e1334e6105b1d71b2cd57f2c199fbf /spec/requests
parent696bef428fae55095e3395bfe439c7ede67c5478 (diff)
downloadgitlab-ce-84e5e90406ad42b1fb83f7495c05fd22cc5fbbd2.tar.gz
Add latest changes from gitlab-org/security/gitlab@14-8-stable-ee
Diffstat (limited to 'spec/requests')
-rw-r--r--spec/requests/api/notes_spec.rb10
1 files changed, 4 insertions, 6 deletions
diff --git a/spec/requests/api/notes_spec.rb b/spec/requests/api/notes_spec.rb
index d4f8b841c96..3c28aed6cac 100644
--- a/spec/requests/api/notes_spec.rb
+++ b/spec/requests/api/notes_spec.rb
@@ -233,11 +233,9 @@ RSpec.describe API::Notes do
subject { post api(request_path, user), params: { body: request_body } }
context 'a command only note' do
- let(:assignee) { create(:user) }
- let(:request_body) { "/assign #{assignee.to_reference}" }
+ let(:request_body) { "/spend 1h" }
before do
- project.add_developer(assignee)
project.add_developer(user)
end
@@ -256,7 +254,7 @@ RSpec.describe API::Notes do
end
it 'applies the commands' do
- expect { subject }.to change { merge_request.reset.assignees }
+ expect { subject }.to change { merge_request.reset.total_time_spent }
end
it 'reports the changes' do
@@ -264,9 +262,9 @@ RSpec.describe API::Notes do
expect(json_response).to include(
'commands_changes' => include(
- 'assignee_ids' => [Integer]
+ 'spend_time' => include('duration' => 3600)
),
- 'summary' => include("Assigned #{assignee.to_reference}.")
+ 'summary' => include('Added 1h spent time.')
)
end
end