mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* 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:
parent
4ca30a130d
commit
ebb7ed1864
2 changed files with 11 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
#
|
||||
|
|
Loading…
Reference in a new issue