aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/core_ext/base64_ext_test.rb
blob: 544c990b3cccfb937dbbd40f4afc08d287ee948f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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