mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* bootstraptest/test_knownbug.rb: move fixed bugs.
* test/ruby/test_sprintf.rb: ditto. * test/yaml/test_yaml.rb: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14065 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
70e28cf1eb
commit
0d4761fb1a
4 changed files with 25 additions and 14 deletions
|
@ -141,6 +141,10 @@ class TestSprintf < Test::Unit::TestCase
|
|||
assert_equal("-0000Inf", sprintf("% 08f", -inf))
|
||||
assert_equal("-Inf ", sprintf("%- 08f", -inf))
|
||||
assert_equal("-0000Inf", sprintf("%+ 08f", -inf))
|
||||
assert_equal('..f00000000',
|
||||
sprintf("%x", -2**32), '[ruby-dev:32351]')
|
||||
assert_equal("..101111111111111111111111111111111",
|
||||
sprintf("%b", -2147483649), '[ruby-dev:32365]')
|
||||
end
|
||||
|
||||
def test_invalid
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue