mirror of
https://github.com/ruby/ruby.git
synced 2025-08-28 15:36:16 +02:00
* string.c (rb_str_justify): fixed the case a fill size is a
multiple of the length of the padding. [ruby-dev:39856] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@26052 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
0f406d278f
commit
c9c095fc7b
4 changed files with 16 additions and 4 deletions
|
@ -320,9 +320,12 @@ class TestString < Test::Unit::TestCase
|
|||
|
||||
end
|
||||
|
||||
Bug2463 = '[ruby-dev:39856]'
|
||||
def test_center
|
||||
assert_equal(S("hello"), S("hello").center(4))
|
||||
assert_equal(S(" hello "), S("hello").center(11))
|
||||
assert_equal(S("ababaababa"), S("").center(10, "ab"), Bug2463)
|
||||
assert_equal(S("ababaababab"), S("").center(11, "ab"), Bug2463)
|
||||
end
|
||||
|
||||
def test_chomp
|
||||
|
@ -779,6 +782,8 @@ class TestString < Test::Unit::TestCase
|
|||
def test_ljust
|
||||
assert_equal(S("hello"), S("hello").ljust(4))
|
||||
assert_equal(S("hello "), S("hello").ljust(11))
|
||||
assert_equal(S("ababababab"), S("").ljust(10, "ab"), Bug2463)
|
||||
assert_equal(S("abababababa"), S("").ljust(11, "ab"), Bug2463)
|
||||
end
|
||||
|
||||
def test_next
|
||||
|
@ -917,6 +922,8 @@ class TestString < Test::Unit::TestCase
|
|||
def test_rjust
|
||||
assert_equal(S("hello"), S("hello").rjust(4))
|
||||
assert_equal(S(" hello"), S("hello").rjust(11))
|
||||
assert_equal(S("ababababab"), S("").rjust(10, "ab"), Bug2463)
|
||||
assert_equal(S("abababababa"), S("").rjust(11, "ab"), Bug2463)
|
||||
end
|
||||
|
||||
def test_scan
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue