1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Add test for format: false with resources - closes #10323

This commit is contained in:
Andrew White 2013-04-24 13:04:05 +01:00
parent e58f116830
commit 00e5453e20

View file

@ -1124,6 +1124,35 @@ class TestRoutingMapper < ActionDispatch::IntegrationTest
assert_equal "Not Found", @response.body
end
def test_resources_with_format_false_from_scope
draw do
scope format: false do
resources :posts
resource :user
end
end
get "/posts"
assert_response :success
assert_equal "posts#index", @response.body
assert_equal "/posts", posts_path
get "/posts.html"
assert_response :not_found
assert_equal "Not Found", @response.body
assert_equal "/posts?format=html", posts_path(format: "html")
get "/user"
assert_response :success
assert_equal "users#show", @response.body
assert_equal "/user", user_path
get "/user.html"
assert_response :not_found
assert_equal "Not Found", @response.body
assert_equal "/user?format=html", user_path(format: "html")
end
def test_index
draw do
get '/info' => 'projects#info', :as => 'info'