Methods
Instance Public methods
test_should_be_able_to_use_named_routes_before_a_request_is_done()
Link
# File actionpack/test/controller/test_case_test.rb, line 1150 def test_should_be_able_to_use_named_routes_before_a_request_is_done with_routing do |set| set.draw { resources :contents } assert_equal 'http://test.host/contents/new', new_content_url assert_equal 'http://test.host/contents/1', content_url(id: 1) end end