mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
test refined.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15190 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
e405a1b93c
commit
da8e083ba6
1 changed files with 2 additions and 2 deletions
|
@ -984,7 +984,7 @@ class TestM17NComb < Test::Unit::TestCase
|
|||
pos2 = pos
|
||||
pos2 += s1.length if pos < 0
|
||||
re = /\A(.{0,#{pos2}})#{Regexp.escape(s2)}/m
|
||||
assert(re.match(s1), "#{re.inspect}.match(#{encdump(s1)})")
|
||||
assert(enccall(re, :match, s1), "#{re.inspect}.match(#{encdump(s1)})")
|
||||
assert_equal($1.length, t, "#{encdump s1}.rindex(#{encdump s2}, #{pos})")
|
||||
else
|
||||
re = /#{Regexp.escape(s2)}/
|
||||
|
@ -1276,7 +1276,7 @@ class TestM17NComb < Test::Unit::TestCase
|
|||
assert_raise(ArgumentError, desc) { s1.tr(s2, s3) }
|
||||
next
|
||||
end
|
||||
t = s1.tr(s2, s3)
|
||||
t = enccall(s1, :tr, s2, s3)
|
||||
assert_operator(s1.length, :>=, t.length, desc)
|
||||
}
|
||||
end
|
||||
|
|
Loading…
Add table
Reference in a new issue