class SC::Rack::TestRunner

Rewrites relevant requests to load the SproutCore test runner for a given project.

Public Class Methods

new(project) click to toggle source
# File lib/sproutcore/rack/test_runner.rb, line 15
def initialize(project)
  @project = project
end

Public Instance Methods

call(env) click to toggle source
# File lib/sproutcore/rack/test_runner.rb, line 19
def call(env)
  return [404, {}, "not found"]
end