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: f712b9f55009e3abd041144a2a064b821c7bd73e (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class TestReportSummaryEntity < Grape::Entity
  expose :total, documentation: { type: 'integer', example: 3363 }

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