File tree Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change 11require 'cases/helper_sqlserver'
22
33
4+ # Windows/Appveyor
5+ if RbConfig ::CONFIG [ 'host_os' ] =~ /mswin|mingw/
6+ # All of these are due to Time.local(2000).zone. See http://git.io/v3t0o
7+ class BelongsToAssociationsTest < ActiveRecord ::TestCase
8+ coerce_tests! :test_belongs_to_with_touch_option_on_touch_without_updated_at_attributes
9+ end
10+ class BasicsTest < ActiveRecord ::TestCase
11+ coerce_tests! :test_preserving_time_objects_with_local_time_conversion_to_default_timezone_utc
12+ coerce_tests! :test_preserving_time_objects_with_time_with_zone_conversion_to_default_timezone_local
13+ coerce_tests! :test_preserving_time_objects_with_utc_time_conversion_to_default_timezone_local
14+ end
15+ class DirtyTest < ActiveRecord ::TestCase
16+ coerce_tests! :test_save_always_should_update_timestamps_when_serialized_attributes_are_present
17+ end
18+ end
19+
20+
421module ActiveRecord
522 class AdapterTest < ActiveRecord ::TestCase
623
You can’t perform that action at this time.
0 commit comments