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:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2016-11-27 18:24:43 +0300
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2016-11-27 18:24:43 +0300
commit3761a0c50ea13b86152417a5e659b30879cb16b1 (patch)
treea80d04879630f85a4648614c9ea5af764b253167 /spec/factories/ci
parent86e7f22b6d10b9113c52f79685edb332d202f567 (diff)
Extend pipelines factory with transient config attribute
Diffstat (limited to 'spec/factories/ci')
-rw-r--r--spec/factories/ci/pipelines.rb21
1 files changed, 8 insertions, 13 deletions
diff --git a/spec/factories/ci/pipelines.rb b/spec/factories/ci/pipelines.rb
index 23585db6ebd..1735791f644 100644
--- a/spec/factories/ci/pipelines.rb
+++ b/spec/factories/ci/pipelines.rb
@@ -21,21 +21,16 @@ FactoryGirl.define do
end
factory :ci_pipeline do
- after(:build) do |pipeline|
- allow(pipeline).to receive(:ci_yaml_file) do
- File.read(Rails.root.join('spec/support/gitlab_stubs/gitlab_ci.yml'))
- end
- end
- end
-
- factory(:ci_pipeline_with_yaml) do
- transient { yaml nil }
+ transient { config nil }
after(:build) do |pipeline, evaluator|
- raise ArgumentError unless evaluator.yaml
-
- allow(pipeline).to receive(:ci_yaml_file)
- .and_return(YAML.dump(evaluator.yaml))
+ allow(pipeline).to receive(:ci_yaml_file) do
+ if evaluator.config
+ YAML.dump(evaluator.config)
+ else
+ File.read(Rails.root.join('spec/support/gitlab_stubs/gitlab_ci.yml'))
+ end
+ end
end
end
end