aboutsummaryrefslogblamecommitdiffstats
path: root/actionpack/test/dispatch/system_testing/server_test.rb
blob: 740e90a4dad6952a3218761c6786ded3eb15be8c (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11

                             




                                               



                                          
                                   
                                                 

                                                                                           



                                                      
                                                                








                                                                          
                                          
     
   
# frozen_string_literal: true

require "abstract_unit"
require "capybara/dsl"
require "action_dispatch/system_testing/server"

class ServerTest < ActiveSupport::TestCase
  setup do
    @old_capybara_server = Capybara.server
  end

  test "port is always included" do
    ActionDispatch::SystemTesting::Server.new.run
    assert Capybara.always_include_port, "expected Capybara.always_include_port to be true"
  end

  test "server is changed from `default` to `puma`" do
    Capybara.server = :default
    ActionDispatch::SystemTesting::Server.new.run
    assert_not_equal Capybara.server, Capybara.servers[:default]
  end

  test "server is not changed to `puma` when is different than default" do
    Capybara.server = :webrick
    ActionDispatch::SystemTesting::Server.new.run
    assert_equal Capybara.server, Capybara.servers[:webrick]
  end

  teardown do
    Capybara.server = @old_capybara_server
  end
end