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/dispatch/runner_test.rb
2017-07-29 14:02:40 +03:00

19 lines
431 B
Ruby

# frozen_string_literal: true
require "abstract_unit"
class RunnerTest < ActiveSupport::TestCase
test "runner preserves the setting of integration_session" do
runner = Class.new do
def before_setup
end
end.new
runner.extend(ActionDispatch::Integration::Runner)
runner.integration_session.host! "lvh.me"
runner.before_setup
assert_equal "lvh.me", runner.integration_session.host
end
end