Sha256: aa459fc0c4b42d47af682d151cd9ad3247f8d077c66eda69b02c6066d6477c08

Contents?: true

Size: 442 Bytes

Versions: 15

Compression:

Stored size: 442 Bytes

Contents

module Inferno
  module Web
    module Controllers
      module TestRuns
        module Results
          class Index < Controller
            include Import[test_runs_repo: 'inferno.repositories.test_runs']

            def handle(req, res)
              results = test_runs_repo.results_for_test_run(req.params[:test_run_id])
              res.body = serialize(results)
            end
          end
        end
      end
    end
  end
end

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
inferno_core-0.4.10 lib/inferno/apps/web/controllers/test_runs/results/index.rb
inferno_core-0.4.9 lib/inferno/apps/web/controllers/test_runs/results/index.rb
inferno_core-0.4.8 lib/inferno/apps/web/controllers/test_runs/results/index.rb
inferno_core-0.4.7 lib/inferno/apps/web/controllers/test_runs/results/index.rb
inferno_core-0.4.7.pre lib/inferno/apps/web/controllers/test_runs/results/index.rb
inferno_core-0.4.6 lib/inferno/apps/web/controllers/test_runs/results/index.rb
inferno_core-0.4.5 lib/inferno/apps/web/controllers/test_runs/results/index.rb
inferno_core-0.4.4 lib/inferno/apps/web/controllers/test_runs/results/index.rb
inferno_core-0.4.3 lib/inferno/apps/web/controllers/test_runs/results/index.rb
inferno_core-0.4.2 lib/inferno/apps/web/controllers/test_runs/results/index.rb
inferno_core-0.4.2.pre lib/inferno/apps/web/controllers/test_runs/results/index.rb
inferno_core-0.4.1 lib/inferno/apps/web/controllers/test_runs/results/index.rb
inferno_core-0.4.1.pre2 lib/inferno/apps/web/controllers/test_runs/results/index.rb
inferno_core-0.4.1.pre lib/inferno/apps/web/controllers/test_runs/results/index.rb
inferno_core-0.4.0 lib/inferno/apps/web/controllers/test_runs/results/index.rb