summaryrefslogtreecommitdiff
path: root/spec/helpers/packages_helper_spec.rb
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-12-20 13:37:47 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2021-12-20 13:37:47 +0000
commitaee0a117a889461ce8ced6fcf73207fe017f1d99 (patch)
tree891d9ef189227a8445d83f35c1b0fc99573f4380 /spec/helpers/packages_helper_spec.rb
parent8d46af3258650d305f53b819eabf7ab18d22f59e (diff)
downloadgitlab-ce-aee0a117a889461ce8ced6fcf73207fe017f1d99.tar.gz
Add latest changes from gitlab-org/gitlab@14-6-stable-eev14.6.0-rc42
Diffstat (limited to 'spec/helpers/packages_helper_spec.rb')
-rw-r--r--spec/helpers/packages_helper_spec.rb30
1 files changed, 0 insertions, 30 deletions
diff --git a/spec/helpers/packages_helper_spec.rb b/spec/helpers/packages_helper_spec.rb
index 2af572850da..06c6cccd488 100644
--- a/spec/helpers/packages_helper_spec.rb
+++ b/spec/helpers/packages_helper_spec.rb
@@ -260,34 +260,4 @@ RSpec.describe PackagesHelper do
end
end
end
-
- describe '#packages_list_data' do
- let_it_be(:resource) { project }
- let_it_be(:type) { 'project' }
-
- let(:expected_result) do
- {
- resource_id: resource.id,
- full_path: resource.full_path,
- page_type: type
- }
- end
-
- subject(:result) { helper.packages_list_data(type, resource) }
-
- context 'at a project level' do
- it 'populates presenter data' do
- expect(result).to match(hash_including(expected_result))
- end
- end
-
- context 'at a group level' do
- let_it_be(:resource) { create(:group) }
- let_it_be(:type) { 'group' }
-
- it 'populates presenter data' do
- expect(result).to match(hash_including(expected_result))
- end
- end
- end
end