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:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-12-19 14:01:45 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-12-19 14:01:45 +0300
commit9297025d0b7ddf095eb618dfaaab2ff8f2018d8b (patch)
tree865198c01d1824a9b098127baa3ab980c9cd2c06 /spec/requests/projects/ml/candidates_controller_spec.rb
parent6372471f43ee03c05a7c1f8b0c6ac6b8a7431dbe (diff)
Add latest changes from gitlab-org/gitlab@16-7-stable-eev16.7.0-rc42
Diffstat (limited to 'spec/requests/projects/ml/candidates_controller_spec.rb')
-rw-r--r--spec/requests/projects/ml/candidates_controller_spec.rb20
1 files changed, 0 insertions, 20 deletions
diff --git a/spec/requests/projects/ml/candidates_controller_spec.rb b/spec/requests/projects/ml/candidates_controller_spec.rb
index 78f31be26d1..0263f2d79b5 100644
--- a/spec/requests/projects/ml/candidates_controller_spec.rb
+++ b/spec/requests/projects/ml/candidates_controller_spec.rb
@@ -51,13 +51,7 @@ RSpec.describe Projects::Ml::CandidatesController, feature_category: :mlops do
end
describe 'GET show' do
- let(:can_read_build) { true }
-
before do
- allow(Ability).to receive(:allowed?)
- .with(user, :read_build, candidate.ci_build)
- .and_return(can_read_build)
-
show_candidate
end
@@ -74,20 +68,6 @@ RSpec.describe Projects::Ml::CandidatesController, feature_category: :mlops do
expect { show_candidate }.not_to exceed_all_query_limit(control_count)
end
- context 'when user has permission to read the build' do
- it 'includes ci build info' do
- expect(assigns[:include_ci_info]).to eq(true)
- end
- end
-
- context 'when user has no permission to read the build' do
- let(:can_read_build) { false }
-
- it 'sets include_ci_job to false' do
- expect(assigns[:include_ci_info]).to eq(false)
- end
- end
-
it_behaves_like '404 if candidate does not exist'
it_behaves_like 'requires read_model_experiments'
end