6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# File 'lib/webrat/selenium/application_server_factory.rb', line 6
def self.app_server_instance
case Webrat.configuration.application_framework
when :sinatra
require "webrat/selenium/application_servers/sinatra"
return Webrat::Selenium::ApplicationServers::Sinatra.new
when :merb
require "webrat/selenium/application_servers/merb"
return Webrat::Selenium::ApplicationServers::Merb.new
when :rails
require "webrat/selenium/application_servers/rails"
return Webrat::Selenium::ApplicationServers::Rails.new
when :external
require "webrat/selenium/application_servers/external"
return Webrat::Selenium::ApplicationServers::External.new
else
raise WebratError.new("Unknown Webrat application_framework: \#{Webrat.configuration.application_framework.inspect}\n\nPlease ensure you have a Webrat configuration block that specifies an application_framework\nin your test_helper.rb, spec_helper.rb, or env.rb (for Cucumber).\n\nFor example:\n\n Webrat.configure do |config|\n # ...\n config.application_framework = :rails\n end\n")
end
end
|