Sha256: 23484cf43f00c2891bc3a7a4538fc245e08475ad5f59bf0e00ea0c02f5e981e7

Contents?: true

Size: 652 Bytes

Versions: 14

Compression:

Stored size: 652 Bytes

Contents

require 'facets/time/round'
require 'test/unit'

class Test_Time_Round < Test::Unit::TestCase

  def setup
    @t = Time.local(2000,03,03,3,37,23)
  end

  def test_round_hour
    assert_equal Time.local(2000,03,03,4, 0), @t.round(60 * 60)
  end

  #def test_round_month
  #  assert_equal Time.local(2000,03,03,3, 0), @t.round( 1.month   )
  #end

  def test_round_15_minutes
    assert_equal Time.local(2000,03,03,3,30), @t.round(15 * 60)
  end

  def test_round_10_minutes
    assert_equal Time.local(2000,03,03,3,40), @t.round(10 * 60)
  end

  def test_round_05_minutes
    assert_equal Time.local(2000,03,03,3,35), @t.round( 5 * 60)
  end
  
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
facets-2.8.4 test/core/time/test_round.rb
facets-2.8.3 test/core/time/test_round.rb
facets-2.8.2 test/core/time/test_round.rb
facets-2.8.1 test/core/time/test_round.rb
facets-2.8.0 test/core/time/test_round.rb
facets-2.7.0 test/core/time/test_round.rb
facets-2.6.0 test/core/time/test_round.rb
facets-2.4.2 test/core/time/test_round.rb
facets-2.4.3 test/core/time/test_round.rb
facets-2.4.4 test/core/time/test_round.rb
facets-2.5.1 test/core/time/test_round.rb
facets-2.5.0 test/core/time/test_round.rb
facets-2.4.5 test/core/time/test_round.rb
facets-2.5.2 test/core/time/test_round.rb