aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/system_testing/railtie.rb
blob: d8af69e5d340dca5457ce7a042c451be67a70f42 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require "system_test_case"

module SystemTesting
  # = System Testing Railtie
  class Railtie < Rails::Railtie # :nodoc:
    config.system_testing = ActiveSupport::OrderedOptions.new

    initializer "system_testing.set_configs" do |app|
      options = app.config.system_testing
      options.driver ||= Rails::SystemTestCase.default_driver

      ActiveSupport.on_load(:system_testing) do
        options.each { |k,v| send("#{k}=", v) }
      end
    end
  end
end