diff options
author | Yehuda Katz <wycats@gmail.com> | 2009-01-11 13:02:34 -0800 |
---|---|---|
committer | Yehuda Katz <wycats@gmail.com> | 2009-01-11 13:02:44 -0800 |
commit | 6fe739ad752aeeaaf274ced6111685d2d6ed2eb8 (patch) | |
tree | 59e6f9d8df82c8cbc8397a321df014013082e2a6 /activesupport/test | |
parent | e8980ad278923e07eb1626908f40608db7f7a6ff (diff) | |
parent | 296ca4da1700eb27a7043112d22027444ea0e548 (diff) | |
download | rails-6fe739ad752aeeaaf274ced6111685d2d6ed2eb8.tar.gz rails-6fe739ad752aeeaaf274ced6111685d2d6ed2eb8.tar.bz2 rails-6fe739ad752aeeaaf274ced6111685d2d6ed2eb8.zip |
Sync 'rails/rails/master'
Diffstat (limited to 'activesupport/test')
-rw-r--r-- | activesupport/test/core_ext/time_with_zone_test.rb | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/activesupport/test/core_ext/time_with_zone_test.rb b/activesupport/test/core_ext/time_with_zone_test.rb index 7c8fb7dd94..4dc1fec559 100644 --- a/activesupport/test/core_ext/time_with_zone_test.rb +++ b/activesupport/test/core_ext/time_with_zone_test.rb @@ -105,6 +105,15 @@ class TimeWithZoneTest < Test::Unit::TestCase end end + def test_xmlschema_with_fractional_seconds + silence_warnings do # silence warnings raised by tzinfo gem + @twz += 0.123456 # advance the time by a fraction of a second + assert_equal "1999-12-31T19:00:00.123-05:00", @twz.xmlschema(3) + assert_equal "1999-12-31T19:00:00.123456-05:00", @twz.xmlschema(6) + assert_equal "1999-12-31T19:00:00.123456-05:00", @twz.xmlschema(12) + end + end + def test_to_yaml silence_warnings do # silence warnings raised by tzinfo gem assert_equal "--- 1999-12-31 19:00:00 -05:00\n", @twz.to_yaml |