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

test_suite_entity.rb « serializers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 53fa830718a2fd82cb0bd9fe8f3c67326f960a01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

class TestSuiteEntity < Grape::Entity
  expose :name
  expose :total_time
  expose :total_count

  expose :success_count
  expose :failed_count
  expose :skipped_count
  expose :error_count
  expose :suite_error

  expose :test_cases, using: TestCaseEntity do |test_suite|
    test_suite.suite_error ? [] : test_suite.test_cases.values.flat_map(&:values)
  end
end