1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* test/yaml/test_yaml.rb: fixed the failing YAML Struct test

at ko1's request.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13904 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
why 2007-11-13 05:45:52 +00:00
parent 8d464a9948
commit 69c1181a9f
2 changed files with 18 additions and 13 deletions

View file

@ -1,3 +1,8 @@
Tue Nov 13 14:44:32 2007 why the lucky stiff <why@ruby-lang.org>
* test/yaml/test_yaml.rb: fixed the failing YAML Struct test
at ko1's request.
Tue Nov 13 02:57:04 2007 URABE Shyouhei <shyouhei@ice.uec.ac.jp>
* numeric.c (flo_divmod): round to the nearest integer.

View file

@ -1082,27 +1082,27 @@ EOY
book_struct.new( "This should be the ISBN", "but I have another struct here", 2002, "None" )
) ], <<EOY
- !ruby/struct:BookStruct
author: Yukihiro Matsumoto
title: Ruby in a Nutshell
year: 2002
isbn: 0-596-00214-9
:author: Yukihiro Matsumoto
:title: Ruby in a Nutshell
:year: 2002
:isbn: 0-596-00214-9
- !ruby/struct:BookStruct
author:
:author:
- Dave Thomas
- Andy Hunt
title: The Pickaxe
year: 2002
isbn: !ruby/struct:BookStruct
author: This should be the ISBN
title: but I have another struct here
year: 2002
isbn: None
:title: The Pickaxe
:year: 2002
:isbn: !ruby/struct:BookStruct
:author: This should be the ISBN
:title: but I have another struct here
:year: 2002
:isbn: None
EOY
)
assert_to_yaml( YAML_Tests::StructTest.new( 123 ), <<EOY )
--- !ruby/struct:YAML_Tests::StructTest
c: 123
:c: 123
EOY
end