From 0f2f8003d2351079ce6ec0e706e474d8024839cc Mon Sep 17 00:00:00 2001 From: Sergey Nartimov Date: Sun, 1 Jan 2012 20:57:55 +0300 Subject: remove ActiveSupport::Base64 in favor of ::Base64 --- activesupport/test/core_ext/base64_ext_test.rb | 10 ---------- activesupport/test/message_encryptor_test.rb | 6 +++--- 2 files changed, 3 insertions(+), 13 deletions(-) delete mode 100644 activesupport/test/core_ext/base64_ext_test.rb (limited to 'activesupport/test') diff --git a/activesupport/test/core_ext/base64_ext_test.rb b/activesupport/test/core_ext/base64_ext_test.rb deleted file mode 100644 index 544c990b3c..0000000000 --- a/activesupport/test/core_ext/base64_ext_test.rb +++ /dev/null @@ -1,10 +0,0 @@ -require 'abstract_unit' - -class Base64Test < Test::Unit::TestCase - def test_no_newline_in_encoded_value - ActiveSupport::Deprecation.silence do - assert_match(/\n/, ActiveSupport::Base64.encode64("oneverylongstringthatwouldnormallybesplitupbynewlinesbytheregularbase64")) - assert_no_match(/\n/, ActiveSupport::Base64.encode64s("oneverylongstringthatwouldnormallybesplitupbynewlinesbytheregularbase64")) - end - end -end diff --git a/activesupport/test/message_encryptor_test.rb b/activesupport/test/message_encryptor_test.rb index 11142a358f..b544742300 100644 --- a/activesupport/test/message_encryptor_test.rb +++ b/activesupport/test/message_encryptor_test.rb @@ -76,10 +76,10 @@ class MessageEncryptorTest < ActiveSupport::TestCase end def munge(base64_string) - bits = ActiveSupport::Base64.decode64(base64_string) + bits = ::Base64.decode64(base64_string) bits.reverse! - ActiveSupport::Base64.strict_encode64(bits) + ::Base64.strict_encode64(bits) end end -end \ No newline at end of file +end -- cgit v1.2.3