mirror of
https://github.com/ruby/ruby.git
synced 2025-08-28 23:45:55 +02:00
* test/ruby/test_string.rb (TestString#test_scan): add a test for
[ruby-core:33338] #4087. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30094 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
9600d9693c
commit
dd77ae9f6c
2 changed files with 13 additions and 0 deletions
|
@ -968,6 +968,14 @@ class TestString < Test::Unit::TestCase
|
|||
res = []
|
||||
a.scan(/(...)/) { |w| res << w }
|
||||
assert_equal([[S("cru")], [S("el ")], [S("wor")]],res)
|
||||
|
||||
a = S("hello")
|
||||
a.taint
|
||||
a.untrust
|
||||
res = []
|
||||
a.scan(/./) { |w| res << w }
|
||||
assert(res[0].tainted?, '[ruby-core:33338] #4087')
|
||||
assert(res[0].untrusted?, '[ruby-core:33338] #4087')
|
||||
end
|
||||
|
||||
def test_size
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue