Changeset 8326
- Timestamp:
- 12/07/07 03:00:50 (10 months ago)
- Files:
-
- trunk/activerecord/CHANGELOG (modified) (1 diff)
- trunk/activerecord/test/date_time_test.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/activerecord/CHANGELOG
r8325 r8326 1 1 *2.0.0* (December 6th, 2007) 2 3 * Anchor DateTimeTest to fixed DateTime instead of a variable value based on Time.now#advance#to_datetime, so that this test passes on 64-bit platforms running Ruby 1.8.6+ [Geoff Buesing] 2 4 3 5 * Fixed that the Query Cache should just be ignored if the database is misconfigured (so that the "About your applications environment" works even before the database has been created) [DHH] trunk/activerecord/test/date_time_test.rb
r7556 r8326 5 5 class DateTimeTest < Test::Unit::TestCase 6 6 def test_saves_both_date_and_time 7 now = 200.years.ago.to_datetime 7 time_values = [1807, 2, 10, 15, 30, 45] 8 now = DateTime.civil(*time_values) 8 9 9 10 task = Task.new 10 11 task.starting = now 11 12 task.save! 12 13 assert_equal now, Task.find(task.id).starting.to_datetime 13 14 # check against Time.local_time, since some platforms will return a Time instead of a DateTime 15 assert_equal Time.local_time(*time_values), Task.find(task.id).starting 14 16 end 15 17