Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/services')
-rw-r--r--spec/services/users/update_service_spec.rb9
1 files changed, 0 insertions, 9 deletions
diff --git a/spec/services/users/update_service_spec.rb b/spec/services/users/update_service_spec.rb
index bd54ca97431..8e13e7d9c0c 100644
--- a/spec/services/users/update_service_spec.rb
+++ b/spec/services/users/update_service_spec.rb
@@ -55,15 +55,6 @@ describe Users::UpdateService do
expect(result[:message]).to eq("Emoji is not included in the list")
end
- it 'ignores read-only attributes' do
- allow(user).to receive(:read_only_attribute?).with(:name).and_return(true)
-
- expect do
- update_user(user, name: 'changed' + user.name)
- user.reload
- end.not_to change { user.name }
- end
-
it 'updates user detail with provided attributes' do
result = update_user(user, job_title: 'Backend Engineer')