Sha256: b77d9f43551f8cf599e5486bf5a7c66aee39343d0f35c9a55043a49adb75908b
Contents?: true
Size: 427 Bytes
Versions: 39
Compression:
Stored size: 427 Bytes
Contents
module Inferno module Web module Controllers module TestRuns module Results class Index < Controller include Import[test_runs_repo: 'repositories.test_runs'] def call(params) results = test_runs_repo.results_for_test_run(params[:test_run_id]) self.body = serialize(results) end end end end end end end
Version data entries
39 entries across 39 versions & 1 rubygems