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:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-11-21 21:10:53 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-11-21 21:10:53 +0300
commitd5ff0674315196e88f48dc0838486b44cd005628 (patch)
tree654721afd199b913a4845b6a92a20dd230482d4c /spec/factories
parentf1c788bb1836083e4f5ed91c1c7494244e6e13ee (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/factories')
-rw-r--r--spec/factories/ci/pipelines.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/spec/factories/ci/pipelines.rb b/spec/factories/ci/pipelines.rb
index ef65cb3ec33..df4ffc4f027 100644
--- a/spec/factories/ci/pipelines.rb
+++ b/spec/factories/ci/pipelines.rb
@@ -87,6 +87,10 @@ FactoryBot.define do
status { :running }
end
+ trait :pending do
+ status { :pending }
+ end
+
trait :canceled do
status { :canceled }
end