From dd03a2ff20bf146885066435e0cfafd3fe70d757 Mon Sep 17 00:00:00 2001 From: nahi Date: Mon, 16 Feb 2004 14:41:49 +0000 Subject: * lib/csv.rb: document reduction. [ruby-core:02429] * test/yaml/test_yaml.rb: added 0..1 test with "0".."1" on display. it should be defined that the specification about what kind of Range is supported in ruby's custom type in YAML. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5731 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/yaml/test_yaml.rb | 2 ++ 1 file changed, 2 insertions(+) (limited to 'test') diff --git a/test/yaml/test_yaml.rb b/test/yaml/test_yaml.rb index 16d903b076..2000f99b60 100644 --- a/test/yaml/test_yaml.rb +++ b/test/yaml/test_yaml.rb @@ -1208,6 +1208,8 @@ EOY # # From Nobu Nakada [ruby-core:02311] # + t = 0..1 + assert_equal( t, YAML.load( YAML.dump( t ) ) ) t = "0".."1" assert_equal( t, YAML.load( YAML.dump( t ) ) ) t = ".."..."..." -- cgit v1.2.3