summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorxibbar <xibbar@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-10-18 14:30:47 +0000
committerxibbar <xibbar@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-10-18 14:30:47 +0000
commit5331ad135c83fae30628aa06244775bc40f79e82 (patch)
tree38b4b5ebb5da4274f2fc710582c7570937ff8e6f
parentdf0b188a1b6ecf759a92843192254f2ba6727a2e (diff)
downloadruby-5331ad135c83fae30628aa06244775bc40f79e82.tar.gz
ruby-5331ad135c83fae30628aa06244775bc40f79e82.tar.xz
ruby-5331ad135c83fae30628aa06244775bc40f79e82.zip
add test for encoding option.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19839 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--test/test_tempfile.rb21
1 files changed, 21 insertions, 0 deletions
diff --git a/test/test_tempfile.rb b/test/test_tempfile.rb
index c4234e551..e7e6413f9 100644
--- a/test/test_tempfile.rb
+++ b/test/test_tempfile.rb
@@ -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