Sha256: b1a8c14435906480e05c554898e35903616b8969891fa50fd6308813248ec5f6

Contents?: true

Size: 1.69 KB

Versions: 28

Compression:

Stored size: 1.69 KB

Contents

require 'helper'

class TestRepeaterWeek < TestCase

  def setup
    @now = Time.local(2006, 8, 16, 14, 0, 0, 0)
  end

  def test_next_future
    weeks = Chronic::RepeaterWeek.new(:week)
    weeks.start = @now

    next_week = weeks.next(:future)
    assert_equal Time.local(2006, 8, 20), next_week.begin
    assert_equal Time.local(2006, 8, 27), next_week.end

    next_next_week = weeks.next(:future)
    assert_equal Time.local(2006, 8, 27), next_next_week.begin
    assert_equal Time.local(2006, 9, 3), next_next_week.end
  end

  def test_next_past
    weeks = Chronic::RepeaterWeek.new(:week)
    weeks.start = @now

    last_week = weeks.next(:past)
    assert_equal Time.local(2006, 8, 6), last_week.begin
    assert_equal Time.local(2006, 8, 13), last_week.end

    last_last_week = weeks.next(:past)
    assert_equal Time.local(2006, 7, 30), last_last_week.begin
    assert_equal Time.local(2006, 8, 6), last_last_week.end
  end

  def test_this_future
    weeks = Chronic::RepeaterWeek.new(:week)
    weeks.start = @now

    this_week = weeks.this(:future)
    assert_equal Time.local(2006, 8, 16, 15), this_week.begin
    assert_equal Time.local(2006, 8, 20), this_week.end
  end

  def test_this_past
    weeks = Chronic::RepeaterWeek.new(:week)
    weeks.start = @now

    this_week = weeks.this(:past)
    assert_equal Time.local(2006, 8, 13, 0), this_week.begin
    assert_equal Time.local(2006, 8, 16, 14), this_week.end
  end

  def test_offset
    span = Chronic::Span.new(@now, @now + 1)

    offset_span = Chronic::RepeaterWeek.new(:week).offset(span, 3, :future)

    assert_equal Time.local(2006, 9, 6, 14), offset_span.begin
    assert_equal Time.local(2006, 9, 6, 14, 0, 1), offset_span.end
  end

end

Version data entries

28 entries across 28 versions & 7 rubygems

Version Path
gitlab-chronic-0.10.6 test/test_repeater_week.rb
gitlab-chronic-0.10.5 test/test_repeater_week.rb
asana2flowdock-1.0.0 vendor/bundle/ruby/1.9.1/gems/chronic-0.10.2/test/test_repeater_week.rb
chronic-mmlac-0.10.2.1 test/test_repeater_week.rb
chronic-0.10.2 test/test_repeater_week.rb
chronic-0.10.1 test/test_repeater_week.rb
chronic-0.10.0 test/test_repeater_week.rb
chronic-0.9.1 test/test_repeater_week.rb
chronic-0.9.0 test/test_repeater_week.rb
Hokkaido-0.1.5 chronic/test/test_repeater_week.rb
Hokkaido-0.1.4 chronic/test/test_repeater_week.rb
Hokkaido-0.1.3 chronic/test/test_repeater_week.rb
Hokkaido-0.1.2 chronic/test/test_repeater_week.rb
Hokkaido-0.1.1 chronic/test/test_repeater_week.rb
Hokkaido-0.1.0 chronic/test/test_repeater_week.rb
Hokkaido-0.0.9 chronic/test/test_repeater_week.rb
Hokkaido-0.0.6 chronic/test/test_repeater_week.rb
Hokkaido-0.0.5 chronic/test/test_repeater_week.rb
Hokkaido-0.0.4 chronic/test/test_repeater_week.rb
chronic-0.8.0 test/test_repeater_week.rb