diff options
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/test/controller/force_ssl_test.rb | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/actionpack/test/controller/force_ssl_test.rb b/actionpack/test/controller/force_ssl_test.rb index af3eedabe2..2b3859aa57 100644 --- a/actionpack/test/controller/force_ssl_test.rb +++ b/actionpack/test/controller/force_ssl_test.rb @@ -92,22 +92,6 @@ class RedirectToSSL < ForceSSLController end end -class RedirectToSSLIfSessionStoreDisabled < ForceSSLController - def banana - request.class_eval do - alias_method :flash_origin, :flash - undef_method :flash - end - - force_ssl_redirect || render(plain: "monkey") - ensure - request.class_eval do - alias_method :flash, :flash_origin - undef_method :flash_origin - end - end -end - class ForceSSLControllerLevelTest < ActionController::TestCase def test_banana_redirects_to_https get :banana @@ -337,14 +321,6 @@ class RedirectToSSLTest < ActionController::TestCase end end -class RedirectToSSLIfSessionStoreDisabledTest < ActionController::TestCase - def test_banana_redirects_to_https_if_not_https_and_session_store_disabled - get :banana - assert_response 301 - assert_equal "https://test.host/redirect_to_ssl_if_session_store_disabled/banana", redirect_to_url - end -end - class ForceSSLControllerLevelTest < ActionController::TestCase def test_no_redirect_websocket_ssl_request request.env["rack.url_scheme"] = "wss" |