diff options
author | Andrew White <andyw@pixeltrix.co.uk> | 2013-06-13 12:21:19 +0100 |
---|---|---|
committer | Andrew White <andyw@pixeltrix.co.uk> | 2013-06-13 12:21:19 +0100 |
commit | a272d0cbe22369948e4fedf66a5889240b5e7b25 (patch) | |
tree | 58888869efd85b244a35efd1c81daf9235a9b96b /activesupport | |
parent | 17f5d8e062909f1fcae25351834d8e89967b645e (diff) | |
download | rails-a272d0cbe22369948e4fedf66a5889240b5e7b25.tar.gz rails-a272d0cbe22369948e4fedf66a5889240b5e7b25.tar.bz2 rails-a272d0cbe22369948e4fedf66a5889240b5e7b25.zip |
Add missing nsec test for 17f5d8e
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/test/core_ext/time_with_zone_test.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/activesupport/test/core_ext/time_with_zone_test.rb b/activesupport/test/core_ext/time_with_zone_test.rb index e8eea27d72..ddcfcc491f 100644 --- a/activesupport/test/core_ext/time_with_zone_test.rb +++ b/activesupport/test/core_ext/time_with_zone_test.rb @@ -450,6 +450,11 @@ class TimeWithZoneTest < ActiveSupport::TestCase assert_equal 500000, twz.usec end + def test_nsec_returns_sec_fraction_when_datetime_is_wrapped + twz = ActiveSupport::TimeWithZone.new(DateTime.civil(2000, 1, 1, 0, 0, Rational(1,2)), @time_zone) + assert_equal 500000000, twz.nsec + end + def test_utc_to_local_conversion_saves_period_in_instance_variable assert_nil @twz.instance_variable_get('@period') @twz.time |