mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
add test for encoding option.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19839 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
45e6848741
commit
679d83e6f2
1 changed files with 21 additions and 0 deletions
|
@ -10,5 +10,26 @@ class TestTempfile < Test::Unit::TestCase
|
|||
o.extend M
|
||||
assert(M === o, "[ruby-dev:32932]")
|
||||
end
|
||||
def test_tempfile_encoding_nooption
|
||||
default_external=Encoding.default_external
|
||||
t=Tempfile.new("TEST")
|
||||
t.write("\xE6\x9D\xBE\xE6\xB1\x9F")
|
||||
t.rewind
|
||||
assert_equal(default_external,t.read.encoding)
|
||||
end
|
||||
def test_tempfile_encoding_ascii8bit
|
||||
default_external=Encoding.default_external
|
||||
t=Tempfile.new("TEST",:encoding=>"ascii-8bit")
|
||||
t.write("\xE6\x9D\xBE\xE6\xB1\x9F")
|
||||
t.rewind
|
||||
assert_equal(Encoding::ASCII_8BIT,t.read.encoding)
|
||||
end
|
||||
def test_tempfile_encoding_ascii8bit2
|
||||
default_external=Encoding.default_external
|
||||
t=Tempfile.new("TEST",Dir::tmpdir,:encoding=>"ascii-8bit")
|
||||
t.write("\xE6\x9D\xBE\xE6\xB1\x9F")
|
||||
t.rewind
|
||||
assert_equal(Encoding::ASCII_8BIT,t.read.encoding)
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue