mirror of
https://github.com/teamcapybara/capybara.git
synced 2022-11-09 12:08:07 -05:00
9c1dd623f1
This change enables the `:respect_data_method` option from the RackTest driver for Rails projects that don't use RSpec.
21 lines
575 B
Ruby
21 lines
575 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')
|
|
|
|
# Override default rack_test driver to respect data-method attributes.
|
|
Capybara.register_driver :rack_test do |app|
|
|
Capybara::RackTest::Driver.new(app, :respect_data_method => true)
|
|
end
|