Methods
T
Instance Public methods
test_should_be_able_to_use_named_routes_before_a_request_is_done()
# File actionpack/test/controller/test_test.rb, line 840
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