aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/CHANGELOG.md
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2012-01-21 12:24:55 -0800
committerJosé Valim <jose.valim@gmail.com>2012-01-21 12:24:55 -0800
commit1620df78dff527b4fa3f7b204fa05d1b630aae17 (patch)
treed5be2ca64e89134f5a68aa8bd31058e09e0cbdec /activesupport/CHANGELOG.md
parent2d000328dfc0d4b297fb4bdcebc9af6c2fb559dc (diff)
parentc8504b1b56a040fef962f97de4f9038d0888db57 (diff)
downloadrails-1620df78dff527b4fa3f7b204fa05d1b630aae17.tar.gz
rails-1620df78dff527b4fa3f7b204fa05d1b630aae17.tar.bz2
rails-1620df78dff527b4fa3f7b204fa05d1b630aae17.zip
Merge pull request #4575 from carlosantoniodasilva/remove-test-pending
Remove ActiveSupport::TestCase#pending, use `skip` instead
Diffstat (limited to 'activesupport/CHANGELOG.md')
-rw-r--r--activesupport/CHANGELOG.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md
index c339e93808..02a989db22 100644
--- a/activesupport/CHANGELOG.md
+++ b/activesupport/CHANGELOG.md
@@ -1,5 +1,7 @@
## Rails 4.0.0 (unreleased) ##
+* Remove ActiveSupport::TestCase#pending method, use `skip` instead. *Carlos Antonio da Silva*
+
* Deprecates the compatibility method Module#local_constant_names,
use Module#local_constants instead (which returns symbols). *fxn*