diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2013-07-03 11:30:35 -0700 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2013-07-03 11:30:35 -0700 |
commit | aa7b0ad428cdf38210f7654a4b48a154523dd235 (patch) | |
tree | 34c92570bf963d8e70c7c620996695932fca5323 /activesupport | |
parent | 55ac7db11bd2fc0cf06d7184f013018fa4be0e9a (diff) | |
parent | 0cb0625c7f24dd6213e5da58bc466129e2feb86b (diff) | |
download | rails-aa7b0ad428cdf38210f7654a4b48a154523dd235.tar.gz rails-aa7b0ad428cdf38210f7654a4b48a154523dd235.tar.bz2 rails-aa7b0ad428cdf38210f7654a4b48a154523dd235.zip |
Merge pull request #11276 from arunagw/build-fix
Fixed test broken by local_constant_names
Diffstat (limited to 'activesupport')
-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 |