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:
authorAlessio Caiazza <acaiazza@gitlab.com>2017-09-25 19:54:08 +0300
committerAlessio Caiazza <acaiazza@gitlab.com>2017-10-05 16:42:25 +0300
commit91f8e734fee1f9e7a16573f7185c48f442e3bb5e (patch)
treef9eb25a636c95a3bf1bbeaec09b0c36cefc7a7b9 /spec/factories/ci
parentf685c368eaa223035b9458b704cfd6ca768f0f7d (diff)
Add CI build trace sections extractor
Diffstat (limited to 'spec/factories/ci')
-rw-r--r--spec/factories/ci/build_trace_section_names.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/spec/factories/ci/build_trace_section_names.rb b/spec/factories/ci/build_trace_section_names.rb
new file mode 100644
index 00000000000..1c16225f0e5
--- /dev/null
+++ b/spec/factories/ci/build_trace_section_names.rb
@@ -0,0 +1,6 @@
+FactoryGirl.define do
+ factory :ci_build_trace_section_name, class: Ci::BuildTraceSectionName do
+ sequence(:name) { |n| "section_#{n}" }
+ project factory: :project
+ end
+end