summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_io_m17n.rb29
1 files changed, 28 insertions, 1 deletions
diff --git a/test/ruby/test_io_m17n.rb b/test/ruby/test_io_m17n.rb
index 091b04a5af..01dca47f7f 100644
--- a/test/ruby/test_io_m17n.rb
+++ b/test/ruby/test_io_m17n.rb
@@ -2069,5 +2069,32 @@ EOT
}
assert(c.ascii_only?, "should be ascii_only #{bug4557}")
end
-end
+ def test_default_mode_on_dosish
+ with_tmpdir {
+ open("a", "w") {|f| f.puts}
+ assert_equal("\r\n", IO.binread("a"))
+ }
+ end if /mswin|mingw/ =~ RUBY_PLATFORM
+
+ def test_default_mode_on_unix
+ with_tmpdir {
+ open("a", "w") {|f| f.puts}
+ assert_equal("\n", IO.binread("a"))
+ }
+ end unless /mswin|mingw/ =~ RUBY_PLATFORM
+
+ def test_text_mode
+ with_tmpdir {
+ open("a", "wt") {|f| f.puts}
+ assert_equal("\r\n", IO.binread("a"))
+ }
+ end
+
+ def test_binary_mode
+ with_tmpdir {
+ open("a", "wb") {|f| f.puts}
+ assert_equal("\n", IO.binread("a"))
+ }
+ end
+end