class Inferno::Web::Controllers::TestSuites::Show

Public Instance Methods

call(params) click to toggle source
# File lib/inferno/apps/web/controllers/test_suites/show.rb, line 6
def call(params)
  test_suite = repo.find(params[:id])
  halt 404 if test_suite.nil?

  self.body = serialize(test_suite, view: :full)
end