Sha256: 8dd2fc55f5120325b7e48027bd034b720116c8d1071dfccbf2d89a0aaed53b50

Contents?: true

Size: 717 Bytes

Versions: 260

Compression:

Stored size: 717 Bytes

Contents

$:.unshift File.join(File.dirname(__FILE__), "..", "lib")
require 'test/unit'
require 'tzinfo'

include TZInfo

class TCOffsetRationals < Test::Unit::TestCase
  def test_rational_for_offset
    [0,1,2,3,4,-1,-2,-3,-4,30*60,-30*60,61*60,-61*60,14*60*60,-14*60*60,20*60*60,-20*60*60].each {|seconds|
      assert_equal(Rational(seconds, 86400), OffsetRationals.rational_for_offset(seconds))      
    }
  end
  
  def test_rational_for_offset_constant
    -28.upto(28) {|i|
      seconds = i * 30 * 60
      
      r1 = OffsetRationals.rational_for_offset(seconds)
      r2 = OffsetRationals.rational_for_offset(seconds)
      
      assert_equal(Rational(seconds, 86400), r1)
      assert_same(r1, r2)
    }
  end
end

Version data entries

260 entries across 183 versions & 18 rubygems

Version Path
challah-0.5.2 vendor/bundle/gems/tzinfo-0.3.32/test/tc_offset_rationals.rb
dirty_history-0.5.3 dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/test/tc_offset_rationals.rb
dirty_history-0.5.2 dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/test/tc_offset_rationals.rb
challah-0.5.1 vendor/bundle/gems/tzinfo-0.3.32/test/tc_offset_rationals.rb
tzinfo-0.3.32 test/tc_offset_rationals.rb
radiant-1.0.0 ruby-debug/ruby/1.8/gems/tzinfo-0.3.31/test/tc_offset_rationals.rb
challah-0.5.0 vendor/bundle/gems/tzinfo-0.3.31/test/tc_offset_rationals.rb
dirty_history-0.5.1 dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/test/tc_offset_rationals.rb
dirty_history-0.5.0 dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/test/tc_offset_rationals.rb
challah-0.4.1 vendor/bundle/gems/tzinfo-0.3.31/test/tc_offset_rationals.rb
challah-0.4.0 vendor/bundle/gems/tzinfo-0.3.31/test/tc_offset_rationals.rb
challah-0.3.5 vendor/bundle/gems/tzinfo-0.3.31/test/tc_offset_rationals.rb
challah-0.3.4 vendor/bundle/gems/tzinfo-0.3.31/test/tc_offset_rationals.rb
challah-0.3.3 vendor/bundle/gems/tzinfo-0.3.31/test/tc_offset_rationals.rb
challah-0.3.2 vendor/bundle/gems/tzinfo-0.3.31/test/tc_offset_rationals.rb
challah-0.3.1 vendor/bundle/gems/tzinfo-0.3.31/test/tc_offset_rationals.rb
challah-0.3.0 vendor/bundle/gems/tzinfo-0.3.31/test/tc_offset_rationals.rb
challah-0.2.1 vendor/bundle/gems/tzinfo-0.3.31/test/tc_offset_rationals.rb
challah-0.2.0 vendor/bundle/gems/tzinfo-0.3.31/test/tc_offset_rationals.rb
dirty_history-0.4.10 dirty_history/ruby/1.9.1/gems/tzinfo-0.3.30/test/tc_offset_rationals.rb