* test/yaml/test_yaml.rb (YAML_Unit_Tests::test_range_cycle):

added tests.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5651 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akira 2004-02-08 07:21:03 +00:00
parent 4ca30a130d
commit ebb7ed1864
2 changed files with 11 additions and 0 deletions

View File

@ -1,3 +1,8 @@
Sun Feb 8 16:18:27 2004 akira yamada <akira@ruby-lang.org>
* test/yaml/test_yaml.rb (YAML_Unit_Tests::test_range_cycle):
added tests.
Sun Feb 8 15:51:57 2004 akira yamada <akira@ruby-lang.org>
* test/ruby/test_file.rb (TestFile::test_fnmatch): added tests for

View File

@ -1210,6 +1210,12 @@ EOY
#
t = "0".."1"
assert_equal( t, YAML.load( YAML.dump( t ) ) )
t = ".."..."..."
assert_equal( t, YAML.load( YAML.dump( t ) ) )
t = ".rb"..".pl"
assert_equal( t, YAML.load( YAML.dump( t ) ) )
t = ".rb"...".pl"
assert_equal( t, YAML.load( YAML.dump( t ) ) )
end
#