summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJeremy Evans <code@jeremyevans.net>2019-10-18 12:39:49 -0700
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2019-10-31 16:24:02 +0900
commitebc884461b0d8c3144c05abeb793e381903de6b2 (patch)
tree7e8a219823978fcde3e1de5d6e33e34fe975d3a9 /test
parent3895e548bd2d75cdf47cd247e84d6071247dd3b3 (diff)
[ruby/stringio] Remove taint support
Ruby 2.7 deprecates taint and it no longer has an effect. The lack of taint support should not cause a problem in previous Ruby versions. https://github.com/ruby/stringio/commit/60ee9ccd95
Diffstat (limited to 'test')
-rw-r--r--test/stringio/test_stringio.rb11
1 files changed, 0 insertions, 11 deletions
diff --git a/test/stringio/test_stringio.rb b/test/stringio/test_stringio.rb
index 07fe350b46..663a33be27 100644
--- a/test/stringio/test_stringio.rb
+++ b/test/stringio/test_stringio.rb
@@ -180,17 +180,6 @@ class TestStringIO < Test::Unit::TestCase
f.close unless f.closed?
end
- def test_write_infection
- bug9769 = '[ruby-dev:48118] [Bug #9769]'
- s = "".untaint
- f = StringIO.new(s, "w")
- f.print("bar".taint)
- f.close
- assert_predicate(s, :tainted?, bug9769)
- ensure
- f.close unless f.closed?
- end
-
def test_write_encoding
s = "".force_encoding(Encoding::UTF_8)
f = StringIO.new(s)