Skip to content

Commit

Permalink
time/test_new.rb: fix tests
Browse files Browse the repository at this point in the history
* test/-ext-/time/test_new.rb (test_timespec_new): fix for r52519.
  swap utc and localtime.

* test/-ext-/time/test_new.rb (test_timespec_now): fix method name
  typo which has overwritten test_timespec_new.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52531 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
nobu committed Nov 11, 2015
1 parent def4370 commit f8cd219
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/-ext-/time/test_new.rb
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ def test_timespec_new
assert_not_equal(Time.at(1447087832, 476451.128).localtime(32400),
Bug::Time.timespec_new(1447087832, 476451125, 32400))
assert_equal(false, Bug::Time.timespec_new(1447087832, 476451125, 0).utc?)
assert_equal(true, Bug::Time.timespec_new(1447087832, 476451125, 0x7fffffff).utc?)
assert_equal(false, Bug::Time.timespec_new(1447087832, 476451125, 0x7ffffffe).utc?)
assert_equal(Time.now.gmtoff, Bug::Time.timespec_new(1447087832, 476451125, 0x7ffffffe).gmtoff)
assert_equal(true, Bug::Time.timespec_new(1447087832, 476451125, 0x7ffffffe).utc?)
assert_equal(false, Bug::Time.timespec_new(1447087832, 476451125, 0x7fffffff).utc?)
assert_equal(Time.now.gmtoff, Bug::Time.timespec_new(1447087832, 476451125, 0x7fffffff).gmtoff)
assert_time_equal(Time.at(1447087832, 476451.125).localtime(86399),
Bug::Time.timespec_new(1447087832, 476451125, 86399))
assert_time_equal(Time.at(1447087832, 476451.125).localtime(-86399),
Expand All @@ -31,7 +31,7 @@ def test_timespec_new
assert_raise(ArgumentError){Bug::Time.timespec_new(1447087832, 476451125,-86400)}
end

def test_timespec_new
def test_timespec_now
t0 = Time.now.to_r
t = Bug::Time.timespec_now
assert_in_delta 3, t0, t
Expand Down

0 comments on commit f8cd219

Please sign in to comment.