debian-mirror-gitlab/spec/factories/ci/build_report_results.rb

61 lines
1.1 KiB
Ruby
Raw Normal View History

2020-06-23 00:09:42 +05:30
# frozen_string_literal: true
FactoryBot.define do
factory :ci_build_report_result, class: 'Ci::BuildReportResult' do
build factory: :ci_build
project factory: :project
2021-04-17 20:07:23 +05:30
transient do
test_suite_name { "rspec" }
end
2020-06-23 00:09:42 +05:30
data do
{
tests: {
2021-04-17 20:07:23 +05:30
name: test_suite_name,
2020-06-23 00:09:42 +05:30
duration: 0.42,
failed: 0,
errored: 2,
skipped: 0,
success: 0
}
}
end
trait :with_junit_success do
data do
{
tests: {
2021-04-17 20:07:23 +05:30
name: test_suite_name,
2020-06-23 00:09:42 +05:30
duration: 0.42,
failed: 0,
errored: 0,
skipped: 0,
success: 2
}
}
end
end
2021-04-17 20:07:23 +05:30
trait :with_junit_suite_error do
transient do
test_suite_error { "some error" }
end
data do
{
tests: {
name: test_suite_name,
duration: 0.42,
failed: 0,
errored: 0,
skipped: 0,
success: 2,
suite_error: test_suite_error
}
}
end
end
2020-06-23 00:09:42 +05:30
end
end