Created
October 30, 2015 18:10
-
-
Save manuwell/1865e6ce8befe590a952 to your computer and use it in GitHub Desktop.
Capybara Rack Mount Point
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'capybara/rails' | |
Capybara.app = Rack::Builder.new do | |
map "some_nested_url" do | |
run Rails.application | |
end | |
end.to_app |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment