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

download_buttons_spec.rb « files « projects « features « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c731cdab1ad68be5e21c2ceec70a93a3d3d38211 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'Projects > Files > Download buttons in files tree', feature_category: :groups_and_projects do
  let(:project) { create(:project, :repository) }
  let(:user) { project.creator }

  let(:pipeline) do
    create(:ci_pipeline, project: project, sha: project.commit.sha, ref: project.default_branch, status: 'success')
  end

  let!(:build) do
    create(:ci_build, :success, :artifacts, pipeline: pipeline, status: pipeline.status, name: 'build')
  end

  before do
    sign_in(user)
    project.add_developer(user)
  end

  it_behaves_like 'archive download buttons' do
    let(:path_to_visit) { project_tree_path(project, project.default_branch) }
  end
end