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

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

class TestReportSummaryEntity < Grape::Entity
  expose :total

  expose :test_suites, using: TestSuiteSummaryEntity do |summary|
    summary.test_suites.values
  end
end