class ActionDispatch::RunnerTest
Public Instance Methods
test_respond_to?()
click to toggle source
# File actionpack/test/controller/runner_test.rb, line 18 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()
click to toggle source
# File actionpack/test/controller/runner_test.rb, line 19 def x; end