aboutsummaryrefslogblamecommitdiffstats
path: root/actionpack/test/dispatch/runner_test.rb
blob: b76bf4a3207cebbccbd3ac434a68da50cd3e0028 (plain) (tree)
1
2
3
4
5
6





                                                               










                                                          
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