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:
authorLin Jen-Shin <godfat@godfat.org>2016-08-10 13:57:51 +0300
committerLin Jen-Shin <godfat@godfat.org>2016-08-10 13:57:51 +0300
commitcc3dbf83f4c0cf21fee56398f27851981f0e98f6 (patch)
tree41dce82288fd3e5a28c8e5803e793d682375719b /spec/features/projects/branches/download_buttons_spec.rb
parent3eae0641ef0708f9b223abbe0070e332ea0b20ac (diff)
Empty lines around blocks
Diffstat (limited to 'spec/features/projects/branches/download_buttons_spec.rb')
-rw-r--r--spec/features/projects/branches/download_buttons_spec.rb11
1 files changed, 7 insertions, 4 deletions
diff --git a/spec/features/projects/branches/download_buttons_spec.rb b/spec/features/projects/branches/download_buttons_spec.rb
index d3f53b65699..a223786777b 100644
--- a/spec/features/projects/branches/download_buttons_spec.rb
+++ b/spec/features/projects/branches/download_buttons_spec.rb
@@ -5,12 +5,15 @@ feature 'Download buttons in branches page', feature: true do
given(:role) { :developer }
given(:status) { 'success' }
given(:project) { create(:project) }
+
given(:pipeline) do
- create(:ci_pipeline, project: project,
- sha: project.commit.sha,
- ref: project.default_branch,
- status: status)
+ create(:ci_pipeline,
+ project: project,
+ sha: project.commit.sha,
+ ref: project.default_branch,
+ status: status)
end
+
given!(:build) do
create(:ci_build, :success, :artifacts,
pipeline: pipeline,