aboutsummaryrefslogtreecommitdiffstats
path: root/test/psych/test_string.rb
diff options
context:
space:
mode:
authortenderlove <tenderlove@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-11-07 11:33:39 +0000
committertenderlove <tenderlove@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-11-07 11:33:39 +0000
commite115627a1846d2c15d1319e6399fa5f8d6e5cb61 (patch)
tree27233e348a8ae0366c376c0e6d5a63c071421fe2 /test/psych/test_string.rb
parent8ff37e390195f401d82cc8cfb607a3b2ddcba1ed (diff)
downloadruby-e115627a1846d2c15d1319e6399fa5f8d6e5cb61.tar.gz
* ext/psych/lib/psych/scalar_scanner.rb: make sure strings that look
like base 60 numbers are serialized as quoted strings. * test/psych/test_string.rb: test for change. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33655 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/psych/test_string.rb')
-rw-r--r--test/psych/test_string.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/psych/test_string.rb b/test/psych/test_string.rb
index 51f1280abf..cffc12163b 100644
--- a/test/psych/test_string.rb
+++ b/test/psych/test_string.rb
@@ -2,6 +2,12 @@ require 'psych/helper'
module Psych
class TestString < TestCase
+ def test_string_with_base_60
+ yaml = Psych.dump '01:03:05'
+ assert_match "'01:03:05'", yaml
+ assert_equal '01:03:05', Psych.load(yaml)
+ end
+
def test_tagged_binary_should_be_dumped_as_binary
string = "hello world!"
string.force_encoding 'ascii-8bit'