diff options
author | Andrew White <andrew.white@unboxedconsulting.com> | 2016-04-28 07:59:32 +0100 |
---|---|---|
committer | Andrew White <andrew.white@unboxed.co> | 2016-05-05 05:07:58 +0100 |
commit | eb3d409d6d8d1d8f9b9a5f2d8f856afe3dbfe068 (patch) | |
tree | eca39aecf0acf305f82fdcac5b8c11ca12c4980f /activesupport/test | |
parent | b782665cbb55260bfdfc19c366c5fbc4ddd6fb12 (diff) | |
download | rails-eb3d409d6d8d1d8f9b9a5f2d8f856afe3dbfe068.tar.gz rails-eb3d409d6d8d1d8f9b9a5f2d8f856afe3dbfe068.tar.bz2 rails-eb3d409d6d8d1d8f9b9a5f2d8f856afe3dbfe068.zip |
Run Active Support tests when preserving timezones
Add to the matrix of Travis tests an entry that runs the Active Support
tests when `ActiveSupport.to_time_preserves_timezone = true`.
Diffstat (limited to 'activesupport/test')
-rw-r--r-- | activesupport/test/abstract_unit.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/activesupport/test/abstract_unit.rb b/activesupport/test/abstract_unit.rb index 7f0fcd6996..bab7440397 100644 --- a/activesupport/test/abstract_unit.rb +++ b/activesupport/test/abstract_unit.rb @@ -18,6 +18,9 @@ Thread.abort_on_exception = true # Show backtraces for deprecated behavior for quicker cleanup. ActiveSupport::Deprecation.debug = true +# Default to old to_time behavior but allow running tests with new behavior +ActiveSupport.to_time_preserves_timezone = ENV['PRESERVE_TIMEZONES'] == '1' + # Disable available locale checks to avoid warnings running the test suite. I18n.enforce_available_locales = false |