chronic 0.6.7 → 0.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (43) hide show
  1. data/HISTORY.md +10 -0
  2. data/README.md +5 -0
  3. data/chronic.gemspec +3 -0
  4. data/lib/chronic.rb +49 -43
  5. data/lib/chronic/chronic.rb +72 -62
  6. data/lib/chronic/grabber.rb +9 -7
  7. data/lib/chronic/handler.rb +10 -12
  8. data/lib/chronic/handlers.rb +33 -1
  9. data/lib/chronic/ordinal.rb +12 -9
  10. data/lib/chronic/pointer.rb +9 -7
  11. data/lib/chronic/repeater.rb +28 -18
  12. data/lib/chronic/repeaters/repeater_day_portion.rb +25 -11
  13. data/lib/chronic/scalar.rb +30 -23
  14. data/lib/chronic/season.rb +1 -12
  15. data/lib/chronic/separator.rb +21 -15
  16. data/lib/chronic/tag.rb +5 -11
  17. data/lib/chronic/time_zone.rb +9 -7
  18. data/lib/chronic/token.rb +12 -10
  19. data/test/helper.rb +7 -1
  20. data/test/{test_Chronic.rb → test_chronic.rb} +6 -6
  21. data/test/{test_DaylightSavings.rb → test_daylight_savings.rb} +1 -1
  22. data/test/{test_Handler.rb → test_handler.rb} +1 -1
  23. data/test/{test_MiniDate.rb → test_mini_date.rb} +9 -9
  24. data/test/{test_Numerizer.rb → test_numerizer.rb} +1 -1
  25. data/test/test_parsing.rb +68 -10
  26. data/test/{test_RepeaterDayName.rb → test_repeater_day_name.rb} +1 -1
  27. data/test/test_repeater_day_portion.rb +254 -0
  28. data/test/{test_RepeaterFortnight.rb → test_repeater_fortnight.rb} +1 -1
  29. data/test/{test_RepeaterHour.rb → test_repeater_hour.rb} +1 -1
  30. data/test/{test_RepeaterMinute.rb → test_repeater_minute.rb} +1 -1
  31. data/test/{test_RepeaterMonth.rb → test_repeater_month.rb} +1 -1
  32. data/test/{test_RepeaterMonthName.rb → test_repeater_month_name.rb} +1 -1
  33. data/test/{test_RepeaterSeason.rb → test_repeater_season.rb} +1 -1
  34. data/test/{test_RepeaterTime.rb → test_repeater_time.rb} +1 -1
  35. data/test/{test_RepeaterWeek.rb → test_repeater_week.rb} +1 -1
  36. data/test/{test_RepeaterWeekday.rb → test_repeater_weekday.rb} +1 -1
  37. data/test/{test_RepeaterWeekend.rb → test_repeater_weekend.rb} +1 -1
  38. data/test/{test_RepeaterYear.rb → test_repeater_year.rb} +1 -1
  39. data/test/{test_Span.rb → test_span.rb} +1 -1
  40. data/test/{test_Token.rb → test_token.rb} +1 -1
  41. metadata +76 -44
  42. data/.gemtest +0 -0
  43. data/.yardopts +0 -3
@@ -1,6 +1,6 @@
1
1
  require 'helper'
2
2
 
3
- class TestRepeaterDayName < Test::Unit::TestCase
3
+ class TestRepeaterDayName < TestCase
4
4
 
5
5
  def setup
6
6
  @now = Time.local(2006, 8, 16, 14, 0, 0, 0)
@@ -0,0 +1,254 @@
1
+ require 'helper'
2
+
3
+ class TestRepeaterDayPortion < TestCase
4
+
5
+ def setup
6
+ @now = Time.local(2006, 8, 16, 14, 0, 0, 0)
7
+ end
8
+
9
+ def test_am_future
10
+ day_portion = Chronic::RepeaterDayPortion.new(:am)
11
+ day_portion.start = @now
12
+
13
+ next_time = day_portion.next(:future)
14
+ assert_equal Time.local(2006, 8, 17, 00), next_time.begin
15
+ assert_equal Time.local(2006, 8, 17, 11, 59, 59), next_time.end
16
+
17
+ next_next_time = day_portion.next(:future)
18
+ assert_equal Time.local(2006, 8, 18, 00), next_next_time.begin
19
+ assert_equal Time.local(2006, 8, 18, 11, 59, 59), next_next_time.end
20
+ end
21
+
22
+ def test_am_past
23
+ day_portion = Chronic::RepeaterDayPortion.new(:am)
24
+ day_portion.start = @now
25
+
26
+ next_time = day_portion.next(:past)
27
+ assert_equal Time.local(2006, 8, 16, 00), next_time.begin
28
+ assert_equal Time.local(2006, 8, 16, 11, 59, 59), next_time.end
29
+
30
+ next_next_time = day_portion.next(:past)
31
+ assert_equal Time.local(2006, 8, 15, 00), next_next_time.begin
32
+ assert_equal Time.local(2006, 8, 15, 11, 59, 59), next_next_time.end
33
+ end
34
+
35
+ def test_am_future_with_daylight_savings_time_boundary
36
+ @now = Time.local(2012,11,3,0,0,0)
37
+ day_portion = Chronic::RepeaterDayPortion.new(:am)
38
+ day_portion.start = @now
39
+
40
+ next_time = day_portion.next(:future)
41
+ assert_equal Time.local(2012, 11, 4, 00), next_time.begin
42
+ assert_equal Time.local(2012, 11, 4, 11, 59, 59), next_time.end
43
+
44
+ next_next_time = day_portion.next(:future)
45
+
46
+ assert_equal Time.local(2012, 11, 5, 00), next_next_time.begin
47
+ assert_equal Time.local(2012, 11, 5, 11, 59, 59), next_next_time.end
48
+ end
49
+
50
+ def test_pm_future
51
+ day_portion = Chronic::RepeaterDayPortion.new(:pm)
52
+ day_portion.start = @now
53
+
54
+ next_time = day_portion.next(:future)
55
+ assert_equal Time.local(2006, 8, 17, 12), next_time.begin
56
+ assert_equal Time.local(2006, 8, 17, 23, 59, 59), next_time.end
57
+
58
+ next_next_time = day_portion.next(:future)
59
+ assert_equal Time.local(2006, 8, 18, 12), next_next_time.begin
60
+ assert_equal Time.local(2006, 8, 18, 23, 59, 59), next_next_time.end
61
+ end
62
+
63
+ def test_pm_past
64
+ day_portion = Chronic::RepeaterDayPortion.new(:pm)
65
+ day_portion.start = @now
66
+
67
+ next_time = day_portion.next(:past)
68
+ assert_equal Time.local(2006, 8, 15, 12), next_time.begin
69
+ assert_equal Time.local(2006, 8, 15, 23, 59, 59), next_time.end
70
+
71
+ next_next_time = day_portion.next(:past)
72
+ assert_equal Time.local(2006, 8, 14, 12), next_next_time.begin
73
+ assert_equal Time.local(2006, 8, 14, 23, 59, 59), next_next_time.end
74
+ end
75
+
76
+ def test_pm_future_with_daylight_savings_time_boundary
77
+ @now = Time.local(2012,11,3,0,0,0)
78
+ day_portion = Chronic::RepeaterDayPortion.new(:pm)
79
+ day_portion.start = @now
80
+
81
+ next_time = day_portion.next(:future)
82
+ assert_equal Time.local(2012, 11, 3, 12), next_time.begin
83
+ assert_equal Time.local(2012, 11, 3, 23, 59, 59), next_time.end
84
+
85
+ next_next_time = day_portion.next(:future)
86
+
87
+ assert_equal Time.local(2012, 11, 4, 12), next_next_time.begin
88
+ assert_equal Time.local(2012, 11, 4, 23, 59, 59), next_next_time.end
89
+ end
90
+
91
+ def test_morning_future
92
+ day_portion = Chronic::RepeaterDayPortion.new(:morning)
93
+ day_portion.start = @now
94
+
95
+ next_time = day_portion.next(:future)
96
+ assert_equal Time.local(2006, 8, 17, 6), next_time.begin
97
+ assert_equal Time.local(2006, 8, 17, 12), next_time.end
98
+
99
+ next_next_time = day_portion.next(:future)
100
+ assert_equal Time.local(2006, 8, 18, 6), next_next_time.begin
101
+ assert_equal Time.local(2006, 8, 18, 12), next_next_time.end
102
+ end
103
+
104
+ def test_morning_past
105
+ day_portion = Chronic::RepeaterDayPortion.new(:morning)
106
+ day_portion.start = @now
107
+
108
+ next_time = day_portion.next(:past)
109
+ assert_equal Time.local(2006, 8, 16, 6), next_time.begin
110
+ assert_equal Time.local(2006, 8, 16, 12), next_time.end
111
+
112
+ next_next_time = day_portion.next(:past)
113
+ assert_equal Time.local(2006, 8, 15, 6), next_next_time.begin
114
+ assert_equal Time.local(2006, 8, 15, 12), next_next_time.end
115
+ end
116
+
117
+ def test_morning_future_with_daylight_savings_time_boundary
118
+ @now = Time.local(2012,11,3,0,0,0)
119
+ day_portion = Chronic::RepeaterDayPortion.new(:morning)
120
+ day_portion.start = @now
121
+
122
+ next_time = day_portion.next(:future)
123
+ assert_equal Time.local(2012, 11, 3, 6), next_time.begin
124
+ assert_equal Time.local(2012, 11, 3, 12), next_time.end
125
+
126
+ next_next_time = day_portion.next(:future)
127
+
128
+ assert_equal Time.local(2012, 11, 4, 6), next_next_time.begin
129
+ assert_equal Time.local(2012, 11, 4, 12), next_next_time.end
130
+ end
131
+
132
+ def test_afternoon_future
133
+ day_portion = Chronic::RepeaterDayPortion.new(:afternoon)
134
+ day_portion.start = @now
135
+
136
+ next_time = day_portion.next(:future)
137
+ assert_equal Time.local(2006, 8, 17, 13), next_time.begin
138
+ assert_equal Time.local(2006, 8, 17, 17), next_time.end
139
+
140
+ next_next_time = day_portion.next(:future)
141
+ assert_equal Time.local(2006, 8, 18, 13), next_next_time.begin
142
+ assert_equal Time.local(2006, 8, 18, 17), next_next_time.end
143
+ end
144
+
145
+ def test_afternoon_past
146
+ day_portion = Chronic::RepeaterDayPortion.new(:afternoon)
147
+ day_portion.start = @now
148
+
149
+ next_time = day_portion.next(:past)
150
+ assert_equal Time.local(2006, 8, 15, 13), next_time.begin
151
+ assert_equal Time.local(2006, 8, 15, 17), next_time.end
152
+
153
+ next_next_time = day_portion.next(:past)
154
+ assert_equal Time.local(2006, 8, 14, 13), next_next_time.begin
155
+ assert_equal Time.local(2006, 8, 14, 17), next_next_time.end
156
+ end
157
+
158
+ def test_afternoon_future_with_daylight_savings_time_boundary
159
+ @now = Time.local(2012,11,3,0,0,0)
160
+ day_portion = Chronic::RepeaterDayPortion.new(:afternoon)
161
+ day_portion.start = @now
162
+
163
+ next_time = day_portion.next(:future)
164
+ assert_equal Time.local(2012, 11, 3, 13), next_time.begin
165
+ assert_equal Time.local(2012, 11, 3, 17), next_time.end
166
+
167
+ next_next_time = day_portion.next(:future)
168
+
169
+ assert_equal Time.local(2012, 11, 4, 13), next_next_time.begin
170
+ assert_equal Time.local(2012, 11, 4, 17), next_next_time.end
171
+ end
172
+
173
+ def test_evening_future
174
+ day_portion = Chronic::RepeaterDayPortion.new(:evening)
175
+ day_portion.start = @now
176
+
177
+ next_time = day_portion.next(:future)
178
+ assert_equal Time.local(2006, 8, 16, 17), next_time.begin
179
+ assert_equal Time.local(2006, 8, 16, 20), next_time.end
180
+
181
+ next_next_time = day_portion.next(:future)
182
+ assert_equal Time.local(2006, 8, 17, 17), next_next_time.begin
183
+ assert_equal Time.local(2006, 8, 17, 20), next_next_time.end
184
+ end
185
+
186
+ def test_evening_past
187
+ day_portion = Chronic::RepeaterDayPortion.new(:evening)
188
+ day_portion.start = @now
189
+
190
+ next_time = day_portion.next(:past)
191
+ assert_equal Time.local(2006, 8, 15, 17), next_time.begin
192
+ assert_equal Time.local(2006, 8, 15, 20), next_time.end
193
+
194
+ next_next_time = day_portion.next(:past)
195
+ assert_equal Time.local(2006, 8, 14, 17), next_next_time.begin
196
+ assert_equal Time.local(2006, 8, 14, 20), next_next_time.end
197
+ end
198
+
199
+ def test_evening_future_with_daylight_savings_time_boundary
200
+ @now = Time.local(2012,11,3,0,0,0)
201
+ day_portion = Chronic::RepeaterDayPortion.new(:evening)
202
+ day_portion.start = @now
203
+
204
+ next_time = day_portion.next(:future)
205
+ assert_equal Time.local(2012, 11, 3, 17), next_time.begin
206
+ assert_equal Time.local(2012, 11, 3, 20), next_time.end
207
+
208
+ next_next_time = day_portion.next(:future)
209
+
210
+ assert_equal Time.local(2012, 11, 4, 17), next_next_time.begin
211
+ assert_equal Time.local(2012, 11, 4, 20), next_next_time.end
212
+ end
213
+
214
+ def test_night_future
215
+ day_portion = Chronic::RepeaterDayPortion.new(:night)
216
+ day_portion.start = @now
217
+
218
+ next_time = day_portion.next(:future)
219
+ assert_equal Time.local(2006, 8, 16, 20), next_time.begin
220
+ assert_equal Time.local(2006, 8, 17, 0), next_time.end
221
+
222
+ next_next_time = day_portion.next(:future)
223
+ assert_equal Time.local(2006, 8, 17, 20), next_next_time.begin
224
+ assert_equal Time.local(2006, 8, 18, 0), next_next_time.end
225
+ end
226
+
227
+ def test_night_past
228
+ day_portion = Chronic::RepeaterDayPortion.new(:night)
229
+ day_portion.start = @now
230
+
231
+ next_time = day_portion.next(:past)
232
+ assert_equal Time.local(2006, 8, 15, 20), next_time.begin
233
+ assert_equal Time.local(2006, 8, 16, 0), next_time.end
234
+
235
+ next_next_time = day_portion.next(:past)
236
+ assert_equal Time.local(2006, 8, 14, 20), next_next_time.begin
237
+ assert_equal Time.local(2006, 8, 15, 0), next_next_time.end
238
+ end
239
+
240
+ def test_night_future_with_daylight_savings_time_boundary
241
+ @now = Time.local(2012,11,3,0,0,0)
242
+ day_portion = Chronic::RepeaterDayPortion.new(:night)
243
+ day_portion.start = @now
244
+
245
+ next_time = day_portion.next(:future)
246
+ assert_equal Time.local(2012, 11, 3, 20), next_time.begin
247
+ assert_equal Time.local(2012, 11, 4, 0), next_time.end
248
+
249
+ next_next_time = day_portion.next(:future)
250
+
251
+ assert_equal Time.local(2012, 11, 4, 20), next_next_time.begin
252
+ assert_equal Time.local(2012, 11, 5, 0), next_next_time.end
253
+ end
254
+ end
@@ -1,6 +1,6 @@
1
1
  require 'helper'
2
2
 
3
- class TestRepeaterFortnight < Test::Unit::TestCase
3
+ class TestRepeaterFortnight < TestCase
4
4
 
5
5
  def setup
6
6
  @now = Time.local(2006, 8, 16, 14, 0, 0, 0)
@@ -1,6 +1,6 @@
1
1
  require 'helper'
2
2
 
3
- class TestRepeaterHour < Test::Unit::TestCase
3
+ class TestRepeaterHour < TestCase
4
4
 
5
5
  def setup
6
6
  @now = Time.local(2006, 8, 16, 14, 0, 0, 0)
@@ -1,6 +1,6 @@
1
1
  require 'helper'
2
2
 
3
- class TestRepeaterMinute < Test::Unit::TestCase
3
+ class TestRepeaterMinute < TestCase
4
4
 
5
5
  def setup
6
6
  @now = Time.local(2008, 6, 25, 7, 15, 30, 0)
@@ -1,6 +1,6 @@
1
1
  require 'helper'
2
2
 
3
- class TestRepeaterMonth < Test::Unit::TestCase
3
+ class TestRepeaterMonth < TestCase
4
4
 
5
5
  def setup
6
6
  # Wed Aug 16 14:00:00 2006
@@ -1,6 +1,6 @@
1
1
  require 'helper'
2
2
 
3
- class TestRepeaterMonthName < Test::Unit::TestCase
3
+ class TestRepeaterMonthName < TestCase
4
4
 
5
5
  def setup
6
6
  # Wed Aug 16 14:00:00 2006
@@ -1,6 +1,6 @@
1
1
  require 'helper'
2
2
 
3
- class TestRepeaterSeason < Test::Unit::TestCase
3
+ class TestRepeaterSeason < TestCase
4
4
 
5
5
  def setup
6
6
  @now = Time.local(2006, 8, 16, 14, 0, 0, 0)
@@ -1,6 +1,6 @@
1
1
  require 'helper'
2
2
 
3
- class TestRepeaterTime < Test::Unit::TestCase
3
+ class TestRepeaterTime < TestCase
4
4
 
5
5
  def setup
6
6
  # Wed Aug 16 14:00:00 2006
@@ -1,6 +1,6 @@
1
1
  require 'helper'
2
2
 
3
- class TestRepeaterWeek < Test::Unit::TestCase
3
+ class TestRepeaterWeek < TestCase
4
4
 
5
5
  def setup
6
6
  @now = Time.local(2006, 8, 16, 14, 0, 0, 0)
@@ -1,6 +1,6 @@
1
1
  require 'helper'
2
2
 
3
- class TestRepeaterWeekday < Test::Unit::TestCase
3
+ class TestRepeaterWeekday < TestCase
4
4
 
5
5
  def setup
6
6
  @now = Time.local(2007, 6, 11, 14, 0, 0, 0) # Mon
@@ -1,6 +1,6 @@
1
1
  require 'helper'
2
2
 
3
- class TestRepeaterWeekend < Test::Unit::TestCase
3
+ class TestRepeaterWeekend < TestCase
4
4
 
5
5
  def setup
6
6
  # Wed Aug 16 14:00:00 2006
@@ -1,6 +1,6 @@
1
1
  require 'helper'
2
2
 
3
- class TestRepeaterYear < Test::Unit::TestCase
3
+ class TestRepeaterYear < TestCase
4
4
 
5
5
  def setup
6
6
  @now = Time.local(2006, 8, 16, 14, 0, 0, 0)
@@ -1,6 +1,6 @@
1
1
  require 'helper'
2
2
 
3
- class TestSpan < Test::Unit::TestCase
3
+ class TestSpan < TestCase
4
4
 
5
5
  def setup
6
6
  # Wed Aug 16 14:00:00 UTC 2006
@@ -1,6 +1,6 @@
1
1
  require 'helper'
2
2
 
3
- class TestToken < Test::Unit::TestCase
3
+ class TestToken < TestCase
4
4
 
5
5
  def setup
6
6
  # Wed Aug 16 14:00:00 UTC 2006
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chronic
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.7
4
+ version: 0.7.0
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -10,8 +10,40 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2012-02-01 00:00:00.000000000 Z
14
- dependencies: []
13
+ date: 2012-08-01 00:00:00.000000000 Z
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: rake
17
+ requirement: !ruby/object:Gem::Requirement
18
+ none: false
19
+ requirements:
20
+ - - ! '>='
21
+ - !ruby/object:Gem::Version
22
+ version: '0'
23
+ type: :development
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ none: false
27
+ requirements:
28
+ - - ! '>='
29
+ - !ruby/object:Gem::Version
30
+ version: '0'
31
+ - !ruby/object:Gem::Dependency
32
+ name: minitest
33
+ requirement: !ruby/object:Gem::Requirement
34
+ none: false
35
+ requirements:
36
+ - - ! '>='
37
+ - !ruby/object:Gem::Version
38
+ version: '0'
39
+ type: :development
40
+ prerelease: false
41
+ version_requirements: !ruby/object:Gem::Requirement
42
+ none: false
43
+ requirements:
44
+ - - ! '>='
45
+ - !ruby/object:Gem::Version
46
+ version: '0'
15
47
  description: Chronic is a natural language date/time parser written in pure Ruby.
16
48
  email:
17
49
  - tom@mojombo.com
@@ -23,9 +55,7 @@ extra_rdoc_files:
23
55
  - HISTORY.md
24
56
  - LICENSE
25
57
  files:
26
- - .gemtest
27
58
  - .gitignore
28
- - .yardopts
29
59
  - HISTORY.md
30
60
  - LICENSE
31
61
  - README.md
@@ -65,26 +95,27 @@ files:
65
95
  - lib/chronic/time_zone.rb
66
96
  - lib/chronic/token.rb
67
97
  - test/helper.rb
68
- - test/test_Chronic.rb
69
- - test/test_DaylightSavings.rb
70
- - test/test_Handler.rb
71
- - test/test_MiniDate.rb
72
- - test/test_Numerizer.rb
73
- - test/test_RepeaterDayName.rb
74
- - test/test_RepeaterFortnight.rb
75
- - test/test_RepeaterHour.rb
76
- - test/test_RepeaterMinute.rb
77
- - test/test_RepeaterMonth.rb
78
- - test/test_RepeaterMonthName.rb
79
- - test/test_RepeaterSeason.rb
80
- - test/test_RepeaterTime.rb
81
- - test/test_RepeaterWeek.rb
82
- - test/test_RepeaterWeekday.rb
83
- - test/test_RepeaterWeekend.rb
84
- - test/test_RepeaterYear.rb
85
- - test/test_Span.rb
86
- - test/test_Token.rb
98
+ - test/test_chronic.rb
99
+ - test/test_daylight_savings.rb
100
+ - test/test_handler.rb
101
+ - test/test_mini_date.rb
102
+ - test/test_numerizer.rb
87
103
  - test/test_parsing.rb
104
+ - test/test_repeater_day_name.rb
105
+ - test/test_repeater_day_portion.rb
106
+ - test/test_repeater_fortnight.rb
107
+ - test/test_repeater_hour.rb
108
+ - test/test_repeater_minute.rb
109
+ - test/test_repeater_month.rb
110
+ - test/test_repeater_month_name.rb
111
+ - test/test_repeater_season.rb
112
+ - test/test_repeater_time.rb
113
+ - test/test_repeater_week.rb
114
+ - test/test_repeater_weekday.rb
115
+ - test/test_repeater_weekend.rb
116
+ - test/test_repeater_year.rb
117
+ - test/test_span.rb
118
+ - test/test_token.rb
88
119
  homepage: http://github.com/mojombo/chronic
89
120
  licenses: []
90
121
  post_install_message:
@@ -106,29 +137,30 @@ required_rubygems_version: !ruby/object:Gem::Requirement
106
137
  version: '0'
107
138
  requirements: []
108
139
  rubyforge_project: chronic
109
- rubygems_version: 1.8.11
140
+ rubygems_version: 1.8.23
110
141
  signing_key:
111
142
  specification_version: 3
112
143
  summary: Natural language date/time parsing.
113
144
  test_files:
114
145
  - test/helper.rb
115
- - test/test_Chronic.rb
116
- - test/test_DaylightSavings.rb
117
- - test/test_Handler.rb
118
- - test/test_MiniDate.rb
119
- - test/test_Numerizer.rb
120
- - test/test_RepeaterDayName.rb
121
- - test/test_RepeaterFortnight.rb
122
- - test/test_RepeaterHour.rb
123
- - test/test_RepeaterMinute.rb
124
- - test/test_RepeaterMonth.rb
125
- - test/test_RepeaterMonthName.rb
126
- - test/test_RepeaterSeason.rb
127
- - test/test_RepeaterTime.rb
128
- - test/test_RepeaterWeek.rb
129
- - test/test_RepeaterWeekday.rb
130
- - test/test_RepeaterWeekend.rb
131
- - test/test_RepeaterYear.rb
132
- - test/test_Span.rb
133
- - test/test_Token.rb
146
+ - test/test_chronic.rb
147
+ - test/test_daylight_savings.rb
148
+ - test/test_handler.rb
149
+ - test/test_mini_date.rb
150
+ - test/test_numerizer.rb
134
151
  - test/test_parsing.rb
152
+ - test/test_repeater_day_name.rb
153
+ - test/test_repeater_day_portion.rb
154
+ - test/test_repeater_fortnight.rb
155
+ - test/test_repeater_hour.rb
156
+ - test/test_repeater_minute.rb
157
+ - test/test_repeater_month.rb
158
+ - test/test_repeater_month_name.rb
159
+ - test/test_repeater_season.rb
160
+ - test/test_repeater_time.rb
161
+ - test/test_repeater_week.rb
162
+ - test/test_repeater_weekday.rb
163
+ - test/test_repeater_weekend.rb
164
+ - test/test_repeater_year.rb
165
+ - test/test_span.rb
166
+ - test/test_token.rb