Methods
Included Modules
- Routes
Constants
| Routes | = | routes |
| APP | = | build_app Routes |
Instance Public methods
app()
Link
test_optional_root_segments()
Link
# File actionpack/test/dispatch/routing_test.rb, line 4398 def test_optional_root_segments get '/' assert_equal 'pages#index', @response.body assert_equal '/', root_path get '/page/1' assert_equal 'pages#index', @response.body assert_equal '1', @request.params[:page] assert_equal '/page/1', root_path('1') assert_equal '/page/1', root_path(:page => '1') end