Source: show | on GitHub
# 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
# File actionpack/test/controller/runner_test.rb, line 17 def x; end