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

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

class TestReportsComparerEntity < Grape::Entity
  expose :total_status, as: :status

  expose :summary do
    expose :total_count, as: :total
    expose :resolved_count, as: :resolved
    expose :failed_count, as: :failed
    expose :error_count, as: :errored
  end

  expose :suite_comparers, as: :suites, using: TestSuiteComparerEntity
end