1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/actionpack/test/controller/runner_test.rb

25 lines
502 B
Ruby
Raw Normal View History

# frozen_string_literal: true
require "abstract_unit"
require "action_dispatch/testing/integration"
module ActionDispatch
class RunnerTest < ActiveSupport::TestCase
class MyRunner
include Integration::Runner
def initialize(session)
@integration_session = session
end
def hi; end
end
def test_respond_to?
runner = MyRunner.new(Class.new { def x; end }.new)
2018-01-24 21:14:10 -05:00
assert_respond_to runner, :hi
assert_respond_to runner, :x
end
end
end