aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/system_test_case.rb
blob: 2072a88d228a9e656a0102da0ca84899fc04834f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
require 'system_testing/test_helper'
require 'system_testing/driver_adapter'

module Rails
  class SystemTestCase < ActionDispatch::IntegrationTest
    include SystemTesting::TestHelper
    include SystemTesting::DriverAdapter

    ActiveSupport.run_load_hooks(:system_testing, self)
  end
end