Created
May 4, 2010 10:15
-
-
Save kares/389230 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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