aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/dispatch/system_testing/server_test.rb
blob: 1866225fc1c66d23daa63f05f600e54fa5c7a3e4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

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

class ServerTest < ActiveSupport::TestCase
  setup do
    ActionDispatch::SystemTesting::Server.new.run
  end

  test "port is always included" do
    assert Capybara.always_include_port, "expected Capybara.always_include_port to be true"
  end
end