summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authoryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-11-22 14:51:49 +0000
committeryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-11-22 14:51:49 +0000
commit6e22e6b73a5dab9dd94c332ba12454a35004e3c9 (patch)
tree9f96519828eaf01d292da4e517e1552948858d52 /test
parent3a272994a214d93ffb7d542103726ae2fb925f77 (diff)
merges r20286 from trunk into ruby_1_9_1.
* ext/syck/rubyext.c (rb_syck_mktime): return DateTime for a value out of range of Time. [ruby-core:19919] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_1@20319 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/yaml/test_yaml.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/yaml/test_yaml.rb b/test/yaml/test_yaml.rb
index ed94705fcf..837f34722f 100644
--- a/test/yaml/test_yaml.rb
+++ b/test/yaml/test_yaml.rb
@@ -1306,6 +1306,10 @@ EOY
raise "id collision in ordered map" if omap.to_yaml =~ /id\d+/
end
+ def test_date_out_of_range
+ assert_nothing_raised{YAML::load('1900-01-01T00:00:00+00:00')}
+ end
+
def test_normal_exit
YAML.load("2000-01-01 00:00:00.#{"0"*1000} +00:00\n")
# '[ruby-core:13735]'