From 00e5453e20c24eedb8bf7cc61145b953210395e3 Mon Sep 17 00:00:00 2001 From: Andrew White Date: Wed, 24 Apr 2013 13:04:05 +0100 Subject: [PATCH] Add test for `format: false` with resources - closes #10323 --- actionpack/test/dispatch/routing_test.rb | 29 ++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/actionpack/test/dispatch/routing_test.rb b/actionpack/test/dispatch/routing_test.rb index afd456e8e5..5b42ca0f21 100644 --- a/actionpack/test/dispatch/routing_test.rb +++ b/actionpack/test/dispatch/routing_test.rb @@ -1124,6 +1124,35 @@ def test_scope_with_format_option 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'