summaryrefslogtreecommitdiff
path: root/test/yaml/test_yaml.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/yaml/test_yaml.rb')
-rw-r--r--test/yaml/test_yaml.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/yaml/test_yaml.rb b/test/yaml/test_yaml.rb
index 3597772c59..16d903b076 100644
--- a/test/yaml/test_yaml.rb
+++ b/test/yaml/test_yaml.rb
@@ -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
#