diff options
author | Arun Agrawal <arunagw@gmail.com> | 2013-07-03 19:56:49 +0200 |
---|---|---|
committer | Arun Agrawal <arunagw@gmail.com> | 2013-07-03 19:56:49 +0200 |
commit | 0cb0625c7f24dd6213e5da58bc466129e2feb86b (patch) | |
tree | 2e53eb66ced7eafdef5b6837f2184ffc496012ac /activesupport/test | |
parent | 501b27e716e7d98666bed9fd8fb4be76d0a7cc13 (diff) | |
download | rails-0cb0625c7f24dd6213e5da58bc466129e2feb86b.tar.gz rails-0cb0625c7f24dd6213e5da58bc466129e2feb86b.tar.bz2 rails-0cb0625c7f24dd6213e5da58bc466129e2feb86b.zip |
Fixed test broken by local_constant_names
depreciation removed
Diffstat (limited to 'activesupport/test')
-rw-r--r-- | activesupport/test/core_ext/module_test.rb | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/activesupport/test/core_ext/module_test.rb b/activesupport/test/core_ext/module_test.rb index f08c61ae92..ccf537e075 100644 --- a/activesupport/test/core_ext/module_test.rb +++ b/activesupport/test/core_ext/module_test.rb @@ -278,12 +278,6 @@ class ModuleTest < ActiveSupport::TestCase def test_local_constants assert_equal %w(Constant1 Constant3), Ab.local_constants.sort.map(&:to_s) end - - def test_local_constant_names - ActiveSupport::Deprecation.silence do - assert_equal %w(Constant1 Constant3), Ab.local_constant_names.sort.map(&:to_s) - end - end end module BarMethodAliaser |