* lib/time.rb (Time#xmlschema): use subsec instead of nsec.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@23248 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2009-04-21 17:11:27 +00:00
parent 16dc9e04cb
commit fd9bfef325
3 changed files with 17 additions and 3 deletions

View file

@ -153,6 +153,18 @@ class TestTimeExtention < Test::Unit::TestCase # :nodoc:
assert_equal("2001-04-17T19:23:17.12345Z", t.xmlschema(5))
assert_equal("2001-04-17T19:23:17.1Z", t.xmlschema(1))
t = Time.at(2.quo(3))
assert_equal("1970-01-01T09:00:00.666+09:00", t.xmlschema(3))
assert_equal("1970-01-01T09:00:00.6666666666+09:00", t.xmlschema(10))
assert_equal("1970-01-01T09:00:00.66666666666666666666+09:00", t.xmlschema(20))
t = Time.at(123456789.quo(9999999999))
assert_equal("1970-01-01T09:00:00.012+09:00", t.xmlschema(3))
assert_equal("1970-01-01T09:00:00.012345678+09:00", t.xmlschema(9))
assert_equal("1970-01-01T09:00:00.0123456789+09:00", t.xmlschema(10))
assert_equal("1970-01-01T09:00:00.0123456789012345678+09:00", t.xmlschema(19))
assert_equal("1970-01-01T09:00:00.01234567890123456789+09:00", t.xmlschema(20))
begin
Time.at(-1)
rescue ArgumentError