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
|