* test/yaml/test_yaml.rb (YAML_Unit_Tests::test_spec_type_{int,float}):
fix syntax error. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5453 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
52e0ab245a
commit
b847262c8f
@ -1,3 +1,8 @@
|
|||||||
|
Tue Jan 13 11:38:58 2004 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
|
* test/yaml/test_yaml.rb (YAML_Unit_Tests::test_spec_type_{int,float}):
|
||||||
|
fix syntax error.
|
||||||
|
|
||||||
Tue Jan 13 07:52:40 2004 why the lucky stiff <why@ruby-lang.org>
|
Tue Jan 13 07:52:40 2004 why the lucky stiff <why@ruby-lang.org>
|
||||||
|
|
||||||
* ext/syck/bytecode.c: turn off default implicit typing.
|
* ext/syck/bytecode.c: turn off default implicit typing.
|
||||||
@ -11,7 +16,7 @@ Tue Jan 13 07:52:40 2004 why the lucky stiff <why@ruby-lang.org>
|
|||||||
|
|
||||||
Tue Jan 13 04:29:52 2004 Dave Thomas <dave@pragprog.com>
|
Tue Jan 13 04:29:52 2004 Dave Thomas <dave@pragprog.com>
|
||||||
|
|
||||||
* lib/rdoc/ri/ri_driver.rb (RiDriver::report_method_stuff):
|
* lib/rdoc/ri/ri_driver.rb (RiDriver::report_method_stuff):
|
||||||
Show fully-qualified class names in class list.
|
Show fully-qualified class names in class list.
|
||||||
|
|
||||||
Tue Jan 13 01:24:17 2004 Yukihiro Matsumoto <matz@ruby-lang.org>
|
Tue Jan 13 01:24:17 2004 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||||
|
@ -443,7 +443,7 @@ hexadecimal: 0xC
|
|||||||
EOY
|
EOY
|
||||||
)
|
)
|
||||||
assert_parse_only(
|
assert_parse_only(
|
||||||
{ 'canonical' => 685230, 'decimal' => 685230, 'octal' => '02472256'.oct, 'hexadecimal' => '0x0A74AE'.hex, 'sexagesimal' => 685230 }, <<EOY
|
{ 'canonical' => 685230, 'decimal' => 685230, 'octal' => 02472256, 'hexadecimal' => 0x0A74AE, 'sexagesimal' => 685230 }, <<EOY)
|
||||||
canonical: 685230
|
canonical: 685230
|
||||||
decimal: +685,230
|
decimal: +685,230
|
||||||
octal: 02472256
|
octal: 02472256
|
||||||
@ -455,17 +455,15 @@ EOY
|
|||||||
def test_spec_type_float
|
def test_spec_type_float
|
||||||
assert_parse_only(
|
assert_parse_only(
|
||||||
{ 'canonical' => 1230.15, 'exponential' => 1230.15, 'fixed' => 1230.15,
|
{ 'canonical' => 1230.15, 'exponential' => 1230.15, 'fixed' => 1230.15,
|
||||||
'negative infinity' => -1.0/0.0 }, <<EOY
|
'negative infinity' => -1.0/0.0 }, <<EOY)
|
||||||
canonical: 1.23015e+3
|
canonical: 1.23015e+3
|
||||||
exponential: 12.3015e+02
|
exponential: 12.3015e+02
|
||||||
fixed: 1,230.15
|
fixed: 1,230.15
|
||||||
negative infinity: -.inf
|
negative infinity: -.inf
|
||||||
EOY
|
EOY
|
||||||
)
|
nan = YAML::load( <<EOY )
|
||||||
nan = YAML::load( <<EOY
|
|
||||||
not a number: .NaN
|
not a number: .NaN
|
||||||
EOY
|
EOY
|
||||||
)
|
|
||||||
assert( nan['not a number'].nan? )
|
assert( nan['not a number'].nan? )
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user