Class: TestDayForTime

Inherits:
Test::Unit::TestCase
  • Object
show all
Defined in:
lib/test/modules/time/test_day.rb

Instance Method Summary collapse

Instance Method Details

#test_days_arrayObject



8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# File 'lib/test/modules/time/test_day.rb', line 8

def test_days_array
  object = Time.new(2012, 2, 8)

  days_array_for_february = [nil, nil, nil, 1, 2, 3, 4, 5,
                             6, 7, 8, 9, 10, 11, 12, 13, 14,
                             15, 16, 17, 18, 19, 20, 21, 22,
                             23, 24, 25, 26, 27, 28, 29]
  assert_kind_of Array, object.days_array
  assert_equal days_array_for_february, object.days_array

  object = Time.new(2012, 7, 1)
  days_array_for_july = [1, 2, 3, 4, 5, 6, 7,
                         8, 9, 10, 11, 12, 13,
                         14, 15, 16, 17, 18, 19,
                         20, 21, 22, 23, 24, 25,
                         26, 27, 28, 29, 30, 31]
  assert_kind_of Array, object.days_array
  assert_equal days_array_for_july, object.days_array
end

#test_days_array_mondayObject



28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# File 'lib/test/modules/time/test_day.rb', line 28

def test_days_array_monday
  WeekOfMonth.configuration.monday_active = true
  object = Time.new(2014, 11, 3)

  days_array_for_november = [nil, nil, nil, nil, nil, 1, 2,
                             3, 4, 5, 6, 7, 8, 9, 10, 11,
                             12, 13, 14, 15, 16, 17, 18,
                             19, 20, 21, 22, 23, 24, 25, 26,
                             27, 28, 29, 30]
  assert_kind_of Array, object.days_array
  assert_equal days_array_for_november, object.days_array

  object = Time.new(2014, 12, 1)
  days_array_for_december = [1, 2, 3, 4, 5, 6, 7,
                             8, 9, 10, 11, 12, 13,
                             14, 15, 16, 17, 18, 19,
                             20, 21, 22, 23, 24, 25,
                             26, 27, 28, 29, 30, 31]
  assert_kind_of Array, object.days_array
  assert_equal days_array_for_december, object.days_array
end

#test_name_of_week_dayObject



50
51
52
53
54
55
56
57
58
59
# File 'lib/test/modules/time/test_day.rb', line 50

def test_name_of_week_day
  WeekOfMonth.configuration.monday_active = false
  assert_equal 'Saturday', Time.new(2012, 12, 1).name_of_week_day
  assert_equal 'Sunday',  Time.new(2012, 12, 2).name_of_week_day
  assert_equal 'Monday',  Time.new(2012, 12, 3).name_of_week_day
  assert_equal 'Tuesday', Time.new(2012, 12, 4).name_of_week_day
  assert_equal 'Wednesday', Time.new(2012, 12, 5).name_of_week_day
  assert_equal 'Thursday', Time.new(2012, 12, 6).name_of_week_day
  assert_equal 'Friday', Time.new(2012, 12, 7).name_of_week_day
end

#test_previous_fridayObject



96
97
98
# File 'lib/test/modules/time/test_day.rb', line 96

def test_previous_friday
  assert_equal Time.new(2012, 12, 28), Time.new(2013, 1, 1).previous_friday
end

#test_previous_mondayObject



112
113
114
# File 'lib/test/modules/time/test_day.rb', line 112

def test_previous_monday
  assert_equal Time.new(2012, 12, 31), Time.new(2013, 1, 1).previous_monday
end

#test_previous_saturdayObject



92
93
94
# File 'lib/test/modules/time/test_day.rb', line 92

def test_previous_saturday
  assert_equal Time.new(2012, 12, 29), Time.new(2013, 1, 1).previous_saturday
end

#test_previous_sundayObject



116
117
118
119
# File 'lib/test/modules/time/test_day.rb', line 116

def test_previous_sunday
  assert_equal Time.new(2012, 12, 30), Time.new(2013, 1, 1).previous_sunday
  assert_equal Time.new(2012, 12, 30), Time.new(2013, 1, 1).previous_sunday
end

#test_previous_thursdayObject



100
101
102
# File 'lib/test/modules/time/test_day.rb', line 100

def test_previous_thursday
  assert_equal Time.new(2012, 12, 27), Time.new(2013, 1, 1).previous_thursday
end

#test_previous_tuesdayObject



108
109
110
# File 'lib/test/modules/time/test_day.rb', line 108

def test_previous_tuesday
  assert_equal Time.new(2012, 12, 25), Time.new(2013, 1, 1).previous_tuesday
end

#test_previous_wednesdayObject



104
105
106
# File 'lib/test/modules/time/test_day.rb', line 104

def test_previous_wednesday
  assert_equal Time.new(2012, 12, 26), Time.new(2013, 1, 1).previous_wednesday
end

#test_upcoming_fridayObject



84
85
86
# File 'lib/test/modules/time/test_day.rb', line 84

def test_upcoming_friday
  assert_equal Time.new(2013, 1, 4), Time.new(2013, 1, 1).upcoming_friday
end

#test_upcoming_mondayObject



68
69
70
# File 'lib/test/modules/time/test_day.rb', line 68

def test_upcoming_monday
  assert_equal Time.new(2013, 1, 7), Time.new(2013, 1, 1).upcoming_monday
end

#test_upcoming_saturdayObject



88
89
90
# File 'lib/test/modules/time/test_day.rb', line 88

def test_upcoming_saturday
  assert_equal Time.new(2013, 1, 5), Time.new(2013, 1, 1).upcoming_saturday
end

#test_upcoming_sundayObject



61
62
63
64
65
66
# File 'lib/test/modules/time/test_day.rb', line 61

def test_upcoming_sunday
  assert_equal Time.new(2013, 1, 6), Time.new(2013, 1, 1).upcoming_sunday
  assert_equal Time.new(2013, 1, 6), Time.new(2013, 1, 5).upcoming_sunday
  assert_equal Time.new(2013, 1, 13), Time.new(2013, 1, 7).upcoming_sunday
  assert_equal Time.new(2013, 1, 6), Time.new(2012, 12, 30).upcoming_sunday
end

#test_upcoming_thursdayObject



80
81
82
# File 'lib/test/modules/time/test_day.rb', line 80

def test_upcoming_thursday
  assert_equal Time.new(2013, 1, 3), Time.new(2013, 1, 1).upcoming_thursday
end

#test_upcoming_tuesdayObject



72
73
74
# File 'lib/test/modules/time/test_day.rb', line 72

def test_upcoming_tuesday
  assert_equal Time.new(2013, 1, 8), Time.new(2013, 1, 1).upcoming_tuesday
end

#test_upcoming_wednesdayObject



76
77
78
# File 'lib/test/modules/time/test_day.rb', line 76

def test_upcoming_wednesday
  assert_equal Time.new(2013, 1, 2), Time.new(2013, 1, 1).upcoming_wednesday
end