mirror of
https://github.com/teamcapybara/capybara.git
synced 2022-11-09 12:08:07 -05:00
17 lines
389 B
Ruby
17 lines
389 B
Ruby
require 'capybara'
|
|
require 'capybara/dsl'
|
|
|
|
Capybara.app = Rack::Builder.new do
|
|
map "/" do
|
|
if Rails.version.to_f >= 3.0
|
|
run Rails.application
|
|
else # Rails 2
|
|
use Rails::Rack::Static
|
|
run ActionController::Dispatcher.new
|
|
end
|
|
end
|
|
end.to_app
|
|
|
|
Capybara.asset_root = Rails.root.join('public')
|
|
Capybara.save_and_open_page_path = Rails.root.join('tmp/capybara')
|
|
|