aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/system_testing/driver_adapters.rb
blob: a8933b4496508228760d2c4f92d0b31d7663df0f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module SystemTesting
  module DriverAdapters
    extend ActiveSupport::Autoload

    autoload :CapybaraRackTestDriver
    autoload :CapybaraSeleniumDriver

    class << self
      def lookup(name)
        const_get(name.to_s.camelize)
      end
    end
  end
end