Sha256: dc0aeb0cf46d6006f8b1097c6f30ee2f2edc2687b58769bdfcbc9386ed114685

Contents?: true

Size: 1.46 KB

Versions: 3

Compression:

Stored size: 1.46 KB

Contents

#! /usr/bin/env ruby
# coding: utf-8

require "helper"
#require "test/unit"
#require "pkg/klass.rb"

class TC_Todo < Test::Unit::TestCase
  def setup
    today = Date.new(2012, 10, 15)
    @t00 = Sculd::Plan::Todo.new(today, false, 10, 'todoA')

    today = DateTime.new(2012, 10, 15, 23, 45, 00)
    @t01 = Sculd::Plan::Todo.new(today, false, 10, 'todoA')
  end

  def test_priority
    #it 'return 0 before the period.' do
    today = Date.new(2012, 10,  1)
    assert_equal(0, @t00.priority(today))

    #it 'return REMINDER_PRIORITY when the day is today.' do
    today = Date.new(2012, 10, 15)
    assert_equal(10000, @t00.priority(today))

    #it 'return values between REMINDER_PRIORITY and DEADLINE_PRIORITY during the period.' do
    today = Date.new(2012, 10, 20)
    assert_equal(15000, @t00.priority(today))

    #it 'return DEADLINE_PRIORITY when the day is past.' do
    today = Date.new(2012, 10, 30)
    assert_equal(20000, @t00.priority(today))
  end

  def test_event_dates
    results = @t00.event_dates
    assert_equal(2, results.size)
    assert_equal(Date.new(2012, 10, 15), results[0])
    assert_equal(Date.new(2012, 10, 25), results[1])


    results = @t01.event_dates
    assert_equal(2                     , results.size)
    assert_equal(Date.new(2012, 10, 15), results[0]  )
    assert_equal(Date.new(2012, 10, 25), results[1]  )
    assert_equal(Date                  , results[0].class  )
    assert_equal(Date                  , results[1].class  )
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
sculd-0.1.2 test/test_todo.rb
sculd-0.1.1 test/test_todo.rb
sculd-0.1.0 test/test_todo.rb