aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-04-17 16:43:48 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-04-17 16:43:48 +0000
commit806cf6d76ab557ceebf5ac5d22f3e39076e1ab61 (patch)
tree5ca7149e3f8ee758cb3b0fd2df096baf61824153 /actionpack/CHANGELOG
parent95e6c03de7cd52a426560a6c46bd08b1791d7022 (diff)
downloadrails-806cf6d76ab557ceebf5ac5d22f3e39076e1ab61.tar.gz
rails-806cf6d76ab557ceebf5ac5d22f3e39076e1ab61.tar.bz2
rails-806cf6d76ab557ceebf5ac5d22f3e39076e1ab61.zip
Added assert_tag and assert_no_tag as a much improved alternative to the deprecated assert_template_xpath_match #1126 [Jamis Buck]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1195 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 338542b3db..6bafbf53c3 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -2,6 +2,8 @@
* Added Request#xml_http_request? (and an alias xhr?) to that'll return true when the request came from one of the Javascript helper methods (Ajax). This can be used to give one behavior for modern browsers supporting Ajax, another to old browsers #1127 [Sam Stephenson]
+* Added assert_tag and assert_no_tag as a much improved alternative to the deprecated assert_template_xpath_match #1126 [Jamis Buck]
+
* Deprecated the majority of all the testing assertions and replaced them with a much smaller core and access to all the collections the old assertions relied on. That way the regular test/unit assertions can be used against these. Added documentation about how to use it all.
* Fixed DateHelper to return values on the option tags such that they'll work properly in IE with form_remote_tag #1024 [rscottmace@gmail.com]