mirror of
https://github.com/teamcapybara/capybara.git
synced 2022-11-09 12:08:07 -05:00
16 lines
322 B
Ruby
16 lines
322 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')
|
|
|