mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
rss.rb: fix usec width
* lib/rss/rss.rb (Time#w3cdtf): fix zero-trimmed width of fraction digits. [ruby-core:70667] [Bug #11509] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51766 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
32c4fd7aa3
commit
88083fa47e
3 changed files with 12 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
Sat Sep 5 11:39:52 2015 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
|
* lib/rss/rss.rb (Time#w3cdtf): fix zero-trimmed width of fraction
|
||||||
|
digits. [ruby-core:70667] [Bug #11509]
|
||||||
|
|
||||||
Sat Sep 5 08:28:58 2015 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
Sat Sep 5 08:28:58 2015 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
* hash.c (rb_hash_equal, rb_hash_eql): [DOC] the orders of each
|
* hash.c (rb_hash_equal, rb_hash_eql): [DOC] the orders of each
|
||||||
|
|
|
@ -53,7 +53,7 @@ class Time
|
||||||
if usec.zero?
|
if usec.zero?
|
||||||
fraction_digits = 0
|
fraction_digits = 0
|
||||||
else
|
else
|
||||||
fraction_digits = Math.log10(usec.to_s.sub(/0*$/, '').to_i).floor + 1
|
fraction_digits = strftime('%6N').sub!(/0*\z/, '').size
|
||||||
end
|
end
|
||||||
xmlschema(fraction_digits)
|
xmlschema(fraction_digits)
|
||||||
end
|
end
|
||||||
|
|
|
@ -102,6 +102,12 @@ module RSS
|
||||||
assert_textinput20(@textinput_info, rss.textinput)
|
assert_textinput20(@textinput_info, rss.textinput)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def test_time_w3cdtf
|
||||||
|
assert_equal("2015-09-05T01:25:48.0001Z",
|
||||||
|
Time.utc(2015, 9, 5, 1, 25, 48, 100).w3cdtf,
|
||||||
|
'[ruby-core:70667] [Bug #11509]')
|
||||||
|
end
|
||||||
|
|
||||||
private
|
private
|
||||||
def setup_xml_declaration_info
|
def setup_xml_declaration_info
|
||||||
@version = "1.0"
|
@version = "1.0"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue