aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG
diff options
context:
space:
mode:
authorTobias Lütke <tobias.luetke@gmail.com>2006-03-08 20:12:30 +0000
committerTobias Lütke <tobias.luetke@gmail.com>2006-03-08 20:12:30 +0000
commitaafc191ab7d7a9c4f733446c073b41ff79c34135 (patch)
treeef0d481edc837c72a6e267397e270829e236537d /actionpack/CHANGELOG
parent47ffc04621c4ce5cbf491091d3680e8e34e674b7 (diff)
downloadrails-aafc191ab7d7a9c4f733446c073b41ff79c34135.tar.gz
rails-aafc191ab7d7a9c4f733446c073b41ff79c34135.tar.bz2
rails-aafc191ab7d7a9c4f733446c073b41ff79c34135.zip
Integration test's url_for now runs in the context of the last request (if any) so after post /products/show/1 url_for :action => 'new' will yield /product/new
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3819 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/CHANGELOG')
-rw-r--r--actionpack/CHANGELOG2
1 files changed, 2 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG
index ac34e2ef21..222ed04d50 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Integration test's url_for now runs in the context of the last request (if any) so after post /products/show/1 url_for :action => 'new' will yield /product/new [Tobias Luetke]
+
* Re-added mixed-in helper methods for the JavascriptGenerator. Moved JavascriptGenerators methods to a module that is mixed in after the helpers are added. Also fixed that variables set in the enumeration methods like #collect are set correctly. Documentation added for the enumeration methods [Rick Olson]. Examples:
page.select('#items li').collect('items') do |element|