aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2016-08-29 11:04:15 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2016-08-29 11:04:15 -0300
commit60f34fd7ef08e507e765c6df3fa1664b22e851e6 (patch)
treecd777ecccc47506f696c5329f919e1067a155c94 /actionpack/test/controller
parenteab8c3b9c2b729fa0ba98ff21ad9f635a8391e87 (diff)
downloadrails-60f34fd7ef08e507e765c6df3fa1664b22e851e6.tar.gz
rails-60f34fd7ef08e507e765c6df3fa1664b22e851e6.tar.bz2
rails-60f34fd7ef08e507e765c6df3fa1664b22e851e6.zip
Remove unneeded FIXME note
This is the intended behavior. You should not do more than one request in a controller test.
Diffstat (limited to 'actionpack/test/controller')
-rw-r--r--actionpack/test/controller/force_ssl_test.rb2
1 files changed, 0 insertions, 2 deletions
diff --git a/actionpack/test/controller/force_ssl_test.rb b/actionpack/test/controller/force_ssl_test.rb
index 8d5e3ce2fe..2b3859aa57 100644
--- a/actionpack/test/controller/force_ssl_test.rb
+++ b/actionpack/test/controller/force_ssl_test.rb
@@ -229,14 +229,12 @@ class ForceSSLFlashTest < ActionController::TestCase
assert_response 302
assert_equal "http://test.host/force_ssl_flash/cheeseburger", redirect_to_url
- # FIXME: AC::TestCase#build_request_uri doesn't build a new uri if PATH_INFO exists
@request.env.delete("PATH_INFO")
get :cheeseburger
assert_response 301
assert_equal "https://test.host/force_ssl_flash/cheeseburger", redirect_to_url
- # FIXME: AC::TestCase#build_request_uri doesn't build a new uri if PATH_INFO exists
@request.env.delete("PATH_INFO")
get :use_flash