aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG
diff options
context:
space:
mode:
authorMichael Koziarski <michael@koziarski.com>2008-06-23 20:32:26 +0300
committerMichael Koziarski <michael@koziarski.com>2008-07-04 10:41:40 +0300
commitdb5839107951b000633fa8405f78e5c315b6656a (patch)
treebfb05cdd47e66647ea81a921767f13f49d23025a /actionpack/CHANGELOG
parent51e13d51adee3c69feab30aa4c0b08d2278ccc5f (diff)
downloadrails-db5839107951b000633fa8405f78e5c315b6656a.tar.gz
rails-db5839107951b000633fa8405f78e5c315b6656a.tar.bz2
rails-db5839107951b000633fa8405f78e5c315b6656a.zip
Remove old broken follow_redirect from functional tests. Still works in integration tests.
The follow_redirect in functional tests only worked if you used redirect_to :id=>foo, :action=>bar, rather than named routes.
Diffstat (limited to 'actionpack/CHANGELOG')
-rw-r--r--actionpack/CHANGELOG5
1 files changed, 5 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG
index c42d3825e3..7f275bef27 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -18,6 +18,11 @@
* Made ActionView::Base#render_file private [Josh Peek]
+* Remove follow_redirect from controller functional tests.
+
+ If you want to follow redirects you can use integration tests. The functional test
+ version was only useful if you were using redirect_to :id=>...
+
* Fix polymorphic_url with singleton resources. #461 [Tammer Saleh]
* Replaced TemplateFinder abstraction with ViewLoadPaths [Josh Peek]