2020-05-29 17:08:35 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
FactoryBot.define do
|
|
|
|
factory :ci_build_report_result, class: 'Ci::BuildReportResult' do
|
|
|
|
build factory: :ci_build
|
|
|
|
project factory: :project
|
|
|
|
data do
|
|
|
|
{
|
2020-06-02 17:08:00 -04:00
|
|
|
tests: {
|
2020-05-29 17:08:35 -04:00
|
|
|
name: "rspec",
|
|
|
|
duration: 0.42,
|
|
|
|
failed: 0,
|
|
|
|
errored: 2,
|
|
|
|
skipped: 0,
|
|
|
|
success: 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
trait :with_junit_success do
|
|
|
|
data do
|
|
|
|
{
|
2020-06-02 17:08:00 -04:00
|
|
|
tests: {
|
2020-05-29 17:08:35 -04:00
|
|
|
name: "rspec",
|
|
|
|
duration: 0.42,
|
|
|
|
failed: 0,
|
|
|
|
errored: 0,
|
|
|
|
skipped: 0,
|
|
|
|
success: 2
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|