summaryrefslogtreecommitdiff
path: root/spec/factories/ci/stages.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/factories/ci/stages.rb')
-rw-r--r--spec/factories/ci/stages.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/spec/factories/ci/stages.rb b/spec/factories/ci/stages.rb
new file mode 100644
index 00000000000..ee3b17b8bf1
--- /dev/null
+++ b/spec/factories/ci/stages.rb
@@ -0,0 +1,13 @@
+FactoryGirl.define do
+ factory :ci_stage, class: Ci::Stage do
+ transient do
+ name 'test'
+ status nil
+ pipeline factory: :ci_empty_pipeline
+ end
+
+ initialize_with do
+ Ci::Stage.new(pipeline, name: name, status: status)
+ end
+ end
+end