mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
19 lines
431 B
Ruby
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
|