Sha256: 9aa6430aec223b8a2d51749c127cf2f04b718fde5ac5b13e93f9c65d51457ac2
Contents?: true
Size: 343 Bytes
Versions: 54
Compression:
Stored size: 343 Bytes
Contents
module Inferno module Web module Controllers module TestSuites class Show < Controller def handle(req, res) test_suite = repo.find(req.params[:id]) halt 404 if test_suite.nil? res.body = serialize(test_suite, view: :full) end end end end end end
Version data entries
54 entries across 54 versions & 1 rubygems