Namespace
Methods
T
X
Instance Public methods
test_respond_to?()
# File actionpack/test/controller/runner_test.rb, line 16
def test_respond_to?
  runner = MyRunner.new(Class.new { def x; end }.new)
  assert runner.respond_to?(:hi)
  assert runner.respond_to?(:x)
end
x()
# File actionpack/test/controller/runner_test.rb, line 17
def x; end