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/features/projects/show/download_buttons_spec.rb')
-rw-r--r--spec/features/projects/show/download_buttons_spec.rb18
1 files changed, 0 insertions, 18 deletions
diff --git a/spec/features/projects/show/download_buttons_spec.rb b/spec/features/projects/show/download_buttons_spec.rb
index 8e27b4b2ede..2616d474991 100644
--- a/spec/features/projects/show/download_buttons_spec.rb
+++ b/spec/features/projects/show/download_buttons_spec.rb
@@ -36,23 +36,5 @@ RSpec.describe 'Projects > Show > Download buttons', feature_category: :groups_a
describe 'when checking project main page' do
it_behaves_like 'archive download buttons'
-
- context 'with artifacts' do
- before do
- visit project_path(project)
- end
-
- it 'shows download artifacts button' do
- href = latest_succeeded_project_artifacts_path(project, "#{project.default_branch}/download", job: 'build')
-
- expect(page).to have_link build.name, href: href
- end
-
- it 'download links have download attribute' do
- page.all('a', text: 'Download').each do |link|
- expect(link[:download]).to eq ''
- end
- end
- end
end
end