Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test_case_failure.rb « ci « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 11fb002804b0114c0049727dbb638678f79c9b56 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

FactoryBot.define do
  factory :ci_test_case_failure, class: 'Ci::TestCaseFailure' do
    build factory: :ci_build
    test_case factory: :ci_test_case
    failed_at { Time.current }
  end
end