summaryrefslogtreecommitdiff
path: root/spec/factories/ci/test_case_failure.rb
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