* ext/psych/lib/psych/visitors/yaml_tree.rb: fix time dumping so that
Syck can load UTC times that Psych dumps. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31418 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
fb58474627
commit
d47073de04
@ -1,3 +1,8 @@
|
|||||||
|
Wed May 4 08:04:59 2011 Aaron Patterson <aaron@tenderlovemaking.com>
|
||||||
|
|
||||||
|
* ext/psych/lib/psych/visitors/yaml_tree.rb: fix time dumping so that
|
||||||
|
Syck can load UTC times that Psych dumps.
|
||||||
|
|
||||||
Wed May 4 07:33:00 2011 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
|
Wed May 4 07:33:00 2011 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
|
||||||
|
|
||||||
* thread.c (rb_fd_copy): fix wrong argument.This issue was pointed
|
* thread.c (rb_fd_copy): fix wrong argument.This issue was pointed
|
||||||
|
@ -14,6 +14,12 @@ class Psych_Unit_Tests < Psych::TestCase
|
|||||||
Psych.domain_types.clear
|
Psych.domain_types.clear
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def test_syck_compat
|
||||||
|
time = Time.utc(2010, 10, 10)
|
||||||
|
yaml = Psych.dump time
|
||||||
|
assert_match "2010-10-10 00:00:00.000000000 Z", yaml
|
||||||
|
end
|
||||||
|
|
||||||
# [ruby-core:34969]
|
# [ruby-core:34969]
|
||||||
def test_regexp_with_n
|
def test_regexp_with_n
|
||||||
assert_cycle(Regexp.new('',0,'n'))
|
assert_cycle(Regexp.new('',0,'n'))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user