Skip to content

Commit

Permalink
test_time.rb: fix method to test
Browse files Browse the repository at this point in the history
* test/test_time.rb (subtest_xmlschema_alias): test the specified
  method, not fixed name iso8601.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@49068 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
nobu committed Dec 30, 2014
1 parent 365b325 commit 205cf01
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions test/test_time.rb
Original file line number Diff line number Diff line change
Expand Up @@ -97,23 +97,23 @@ def test_encode_httpdate
def subtest_xmlschema_alias(method)
t = Time.utc(1985, 4, 12, 23, 20, 50, 520000)
s = "1985-04-12T23:20:50.52Z"
assert_equal(t, Time.iso8601(s))
assert_equal(s, t.iso8601(2))
assert_equal(t, Time.__send__(method, s))
assert_equal(s, t.__send__(method, 2))

t = Time.utc(1996, 12, 20, 0, 39, 57)
s = "1996-12-19T16:39:57-08:00"
assert_equal(t, Time.iso8601(s))
assert_equal(t, Time.__send__(method, s))
# There is no way to generate time string with arbitrary timezone.
s = "1996-12-20T00:39:57Z"
assert_equal(t, Time.iso8601(s))
assert_equal(t, Time.__send__(method, s))
assert_equal(s, t.iso8601)

t = Time.utc(1990, 12, 31, 23, 59, 60)
s = "1990-12-31T23:59:60Z"
assert_equal(t, Time.iso8601(s))
assert_equal(t, Time.__send__(method, s))
# leap second is representable only if timezone file has it.
s = "1990-12-31T15:59:60-08:00"
assert_equal(t, Time.iso8601(s))
assert_equal(t, Time.__send__(method, s))

begin
Time.at(-1)
Expand All @@ -122,7 +122,7 @@ def subtest_xmlschema_alias(method)
else
t = Time.utc(1937, 1, 1, 11, 40, 27, 870000)
s = "1937-01-01T12:00:27.87+00:20"
assert_equal(t, Time.iso8601(s))
assert_equal(t, Time.__send__(method, s))
end
end

Expand Down

0 comments on commit 205cf01

Please sign in to comment.