Skip to content

Instantly share code, notes, and snippets.

@kares
Created May 4, 2010 10:15
Show Gist options
  • Save kares/389230 to your computer and use it in GitHub Desktop.
Save kares/389230 to your computer and use it in GitHub Desktop.
def assert_time_equal(t1, t2, message = nil)
t1_no_usec = Time.utc t1.year, t1.month, t1.day, t1.hour, t1.min, t1.sec, 0
t2_no_usec = Time.utc t2.year, t2.month, t2.day, t2.hour, t2.min, t2.sec, 0
assert_equal t1_no_usec, t2_no_usec, message
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment