lib/fitting/report/combination.rb in fitting-2.17.0 vs lib/fitting/report/combination.rb in fitting-2.18.0

- old
+ new

@@ -7,27 +7,13 @@ @combination = combination @tests = Fitting::Report::Tests.new([]) @id = SecureRandom.hex end - def json_schema - @json_schema - end + attr_reader :json_schema, :id, :type, :tests - def id - @id - end - - def type - @type - end - def name @combination - end - - def tests - @tests end def add_test(test) @tests.push(test) end