method
build_expanded_path
rails latest stable - Class:
ActionDispatch::Integration::Session
build_expanded_path(path)private
No documentation available.
# File actionpack/lib/action_dispatch/testing/integration.rb, line 317
def build_expanded_path(path)
location = URI.parse(path)
yield location if block_given?
path = location.path
location.query ? "#{path}?#{location.query}" : path
end