summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_econv.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/ruby/test_econv.rb b/test/ruby/test_econv.rb
index 765616da3d..080d027c4a 100644
--- a/test/ruby/test_econv.rb
+++ b/test/ruby/test_econv.rb
@@ -902,4 +902,10 @@ class TestEncodingConverter < Test::Unit::TestCase
"".encode("euc-jp", :undef => :replace, :replace => broken)
}
end
+
+ def test_newline_option
+ ec1 = Encoding::Converter.new("", "", universal_newline: true)
+ ec2 = Encoding::Converter.new("", "", newline: :universal)
+ assert_equal(ec1, ec2)
+ end
end