linguistics 1.0.9 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (69) hide show
  1. data.tar.gz.sig +0 -0
  2. data/.gemtest +0 -0
  3. data/ChangeLog +849 -342
  4. data/History.rdoc +11 -0
  5. data/LICENSE +9 -9
  6. data/Manifest.txt +44 -0
  7. data/README.rdoc +226 -0
  8. data/Rakefile +32 -349
  9. data/examples/endocs.rb +272 -0
  10. data/examples/generalize_sentence.rb +2 -1
  11. data/examples/klingon.rb +22 -0
  12. data/lib/linguistics.rb +130 -292
  13. data/lib/linguistics/en.rb +337 -1628
  14. data/lib/linguistics/en/articles.rb +138 -0
  15. data/lib/linguistics/en/conjugation.rb +2245 -0
  16. data/lib/linguistics/en/conjunctions.rb +202 -0
  17. data/lib/linguistics/en/{infinitive.rb → infinitives.rb} +41 -55
  18. data/lib/linguistics/en/linkparser.rb +41 -49
  19. data/lib/linguistics/en/numbers.rb +483 -0
  20. data/lib/linguistics/en/participles.rb +33 -0
  21. data/lib/linguistics/en/pluralization.rb +810 -0
  22. data/lib/linguistics/en/stemmer.rb +75 -0
  23. data/lib/linguistics/en/titlecase.rb +121 -0
  24. data/lib/linguistics/en/wordnet.rb +63 -97
  25. data/lib/linguistics/inflector.rb +89 -0
  26. data/lib/linguistics/iso639.rb +534 -448
  27. data/lib/linguistics/languagebehavior.rb +36 -0
  28. data/lib/linguistics/monkeypatches.rb +42 -0
  29. data/spec/lib/constants.rb +15 -0
  30. data/spec/lib/helpers.rb +38 -0
  31. data/spec/linguistics/en/articles_spec.rb +797 -0
  32. data/spec/linguistics/en/conjugation_spec.rb +2083 -0
  33. data/spec/linguistics/en/conjunctions_spec.rb +154 -0
  34. data/spec/linguistics/en/infinitives_spec.rb +518 -0
  35. data/spec/linguistics/en/linkparser_spec.rb +66 -0
  36. data/spec/linguistics/en/numbers_spec.rb +1295 -0
  37. data/spec/linguistics/en/participles_spec.rb +55 -0
  38. data/spec/linguistics/en/pluralization_spec.rb +4636 -0
  39. data/spec/linguistics/en/stemmer_spec.rb +72 -0
  40. data/spec/linguistics/en/titlecase_spec.rb +841 -0
  41. data/spec/linguistics/en/wordnet_spec.rb +85 -0
  42. data/spec/linguistics/en_spec.rb +45 -167
  43. data/spec/linguistics/inflector_spec.rb +40 -0
  44. data/spec/linguistics/iso639_spec.rb +49 -53
  45. data/spec/linguistics/monkeypatches_spec.rb +40 -0
  46. data/spec/linguistics_spec.rb +46 -76
  47. metadata +241 -113
  48. metadata.gz.sig +0 -0
  49. data/README +0 -166
  50. data/README.english +0 -245
  51. data/rake/191_compat.rb +0 -26
  52. data/rake/dependencies.rb +0 -76
  53. data/rake/documentation.rb +0 -123
  54. data/rake/helpers.rb +0 -502
  55. data/rake/hg.rb +0 -318
  56. data/rake/manual.rb +0 -787
  57. data/rake/packaging.rb +0 -129
  58. data/rake/publishing.rb +0 -341
  59. data/rake/style.rb +0 -62
  60. data/rake/svn.rb +0 -668
  61. data/rake/testing.rb +0 -152
  62. data/rake/verifytask.rb +0 -64
  63. data/tests/en/infinitive.tests.rb +0 -207
  64. data/tests/en/inflect.tests.rb +0 -1389
  65. data/tests/en/lafcadio.tests.rb +0 -77
  66. data/tests/en/linkparser.tests.rb +0 -42
  67. data/tests/en/lprintf.tests.rb +0 -77
  68. data/tests/en/titlecase.tests.rb +0 -73
  69. data/tests/en/wordnet.tests.rb +0 -95
@@ -0,0 +1,2083 @@
1
+ #!/usr/bin/env spec -cfs
2
+
3
+ BEGIN {
4
+ require 'pathname'
5
+ basedir = Pathname.new( __FILE__ ).dirname.parent.parent.parent
6
+
7
+ libdir = basedir + "lib"
8
+
9
+ $LOAD_PATH.unshift( basedir.to_s ) unless $LOAD_PATH.include?( basedir.to_s )
10
+ $LOAD_PATH.unshift( libdir.to_s ) unless $LOAD_PATH.include?( libdir.to_s )
11
+ }
12
+
13
+ require 'rspec'
14
+ require 'spec/lib/helpers'
15
+
16
+ require 'linguistics'
17
+ require 'linguistics/en/conjugation'
18
+
19
+
20
+ describe Linguistics::EN::Conjugation do
21
+
22
+ before( :all ) do
23
+ setup_logging( :fatal )
24
+ Linguistics.use( :en )
25
+ end
26
+
27
+ after( :all ) do
28
+ reset_logging()
29
+ end
30
+
31
+
32
+ it "adds EN::Conjugation to the list of English language modules" do
33
+ Linguistics::EN.should have_extension( :conjugation )
34
+ end
35
+
36
+ context "documentation examples" do
37
+
38
+ it 'conjugates "run".en.past_tense as "ran"' do
39
+ "run".en.past_tense.should == "ran"
40
+ end
41
+
42
+ it 'conjugates "run".en.past_participle as "run"' do
43
+ "run".en.past_participle.should == "run"
44
+ end
45
+
46
+ it 'conjugates "run".en.present_tense as "run"' do
47
+ "run".en.present_tense.should == "run"
48
+ end
49
+
50
+ it 'conjugates "run".en.present_participle as "running"' do
51
+ "run".en.present_participle.should == "running"
52
+ end
53
+
54
+ it '"be".en.conjugate( :present, :third_person_singular ) should return "is"' do
55
+ "be".en.conjugate( :present, :third_person_singular ).should == "is"
56
+ end
57
+
58
+ it '"be".en.conjugate( :present, :first_person_singular ) should return "am"' do
59
+ "be".en.conjugate( :present, :first_person_singular ).should == "am"
60
+ end
61
+
62
+ it '"be".en.conjugate( :past, :first_person_singular ) should return "was"' do
63
+ "be".en.conjugate( :past, :first_person_singular ).should == "was"
64
+ end
65
+
66
+ end
67
+
68
+ it "conjugates 'arise' as 'arose'" do
69
+ "arise".en.past_tense.should == 'arose'
70
+ end
71
+
72
+ it "conjugates 'awake' as 'awoke'" do
73
+ "awake".en.past_tense.should == 'awoke'
74
+ end
75
+
76
+ it "conjugates 'backbite' as 'backbit'" do
77
+ "backbite".en.past_tense.should == 'backbit'
78
+ end
79
+
80
+ it "conjugates 'backslide' as 'backslid'" do
81
+ "backslide".en.past_tense.should == 'backslid'
82
+ end
83
+
84
+ it "conjugates 'be' as 'was' in third person singular" do
85
+ "be".en.past_tense( :third_person_singular ).should == 'was'
86
+ end
87
+
88
+ it "conjugates 'be' as 'were'" do
89
+ "be".en.past_tense.should == 'were'
90
+ end
91
+
92
+ it "conjugates 'be' in first person singular as 'was'" do
93
+ pending "figuring out how this is supposed to work" do
94
+ "be".en.past_tense( :first_person ).should == 'was'
95
+ end
96
+ end
97
+
98
+ it "conjugates 'be' in third person singular as 'were'" do
99
+ "be".en.past_tense( :third_person ).should == 'were'
100
+ end
101
+
102
+ it "conjugates 'bear' as 'bore'" do
103
+ "bear".en.past_tense.should == 'bore'
104
+ end
105
+
106
+ it "conjugates 'beat' as 'beat'" do
107
+ "beat".en.past_tense.should == 'beat'
108
+ end
109
+
110
+ it "conjugates 'become' as 'became'" do
111
+ "become".en.past_tense.should == 'became'
112
+ end
113
+
114
+ it "conjugates 'befall' as 'befell'" do
115
+ "befall".en.past_tense.should == 'befell'
116
+ end
117
+
118
+ it "conjugates 'beget' as 'begat'" do
119
+ "beget".en.past_tense.should == 'begat'
120
+ end
121
+
122
+ it "conjugates 'begin' as 'began'" do
123
+ "begin".en.past_tense.should == 'began'
124
+ end
125
+
126
+ it "conjugates 'bend' as 'bent'" do
127
+ "bend".en.past_tense.should == 'bent'
128
+ end
129
+
130
+ it "conjugates 'beset' as 'beset'" do
131
+ "beset".en.past_tense.should == 'beset'
132
+ end
133
+
134
+ it "conjugates 'bet' as 'bet'" do
135
+ "bet".en.past_tense.should == 'bet'
136
+ end
137
+
138
+ it "conjugates 'betake' as 'betook'" do
139
+ "betake".en.past_tense.should == 'betook'
140
+ end
141
+
142
+ it "conjugates 'bethink' as 'bethought'" do
143
+ "bethink".en.past_tense.should == 'bethought'
144
+ end
145
+
146
+ it "conjugates 'bid' as 'bade'" do
147
+ pending "figuring out how this is supposed to work" do
148
+ "bid".en.past_tense.should == 'bade'
149
+ end
150
+ end
151
+
152
+ it "conjugates 'bid' in first person as 'bade'" do
153
+ pending "figuring out how pipe-delimited conjugations are supposed to work" do
154
+ "bid".en.past_tense( :first_person ).should == 'bade'
155
+ end
156
+ end
157
+
158
+ it "conjugates 'bid' in third person as 'bade'" do
159
+ pending "figuring out how this is supposed to work" do
160
+ "bid".en.past_tense( :third_person ).should == 'bade'
161
+ end
162
+ end
163
+
164
+ it "conjugates 'bind' as 'bound'" do
165
+ "bind".en.past_tense.should == 'bound'
166
+ end
167
+
168
+ it "conjugates 'bite' as 'bit'" do
169
+ "bite".en.past_tense.should == 'bit'
170
+ end
171
+
172
+ it "conjugates 'bleed' as 'bled'" do
173
+ "bleed".en.past_tense.should == 'bled'
174
+ end
175
+
176
+ it "conjugates 'blow' as 'blew'" do
177
+ "blow".en.past_tense.should == 'blew'
178
+ end
179
+
180
+ it "conjugates 'break' as 'broke'" do
181
+ "break".en.past_tense.should == 'broke'
182
+ end
183
+
184
+ it "conjugates 'breed' as 'bred'" do
185
+ "breed".en.past_tense.should == 'bred'
186
+ end
187
+
188
+ it "conjugates 'bring' as 'brought'" do
189
+ "bring".en.past_tense.should == 'brought'
190
+ end
191
+
192
+ it "conjugates 'broadcast' as 'broadcast'" do
193
+ "broadcast".en.past_tense.should == 'broadcast'
194
+ end
195
+
196
+ it "conjugates 'browbeat' as 'browbeat'" do
197
+ "browbeat".en.past_tense.should == 'browbeat'
198
+ end
199
+
200
+ it "conjugates 'build' as 'built'" do
201
+ "build".en.past_tense.should == 'built'
202
+ end
203
+
204
+ it "conjugates 'build-up' as 'built-up'" do
205
+ "build-up".en.past_tense.should == 'built-up'
206
+ end
207
+
208
+ it "conjugates 'build-up' in first person as 'built-up'" do
209
+ "build-up".en.past_tense( :first_person ).should == 'built-up'
210
+ end
211
+
212
+ it "conjugates 'build-up' in third person as 'built-up'" do
213
+ "build-up".en.past_tense( :third_person ).should == 'built-up'
214
+ end
215
+
216
+ it "conjugates 'burst' as 'burst'" do
217
+ "burst".en.past_tense.should == 'burst'
218
+ end
219
+
220
+ it "conjugates 'buy' as 'bought'" do
221
+ "buy".en.past_tense.should == 'bought'
222
+ end
223
+
224
+ it "conjugates 'carry-out' as 'carried-out'" do
225
+ "carry-out".en.past_tense.should == 'carried-out'
226
+ end
227
+
228
+ it "conjugates 'carry-out' in first person as 'carried-out'" do
229
+ "carry-out".en.past_tense( :first_person ).should == 'carried-out'
230
+ end
231
+
232
+ it "conjugates 'carry-out' in third person as 'carried-out'" do
233
+ "carry-out".en.past_tense( :third_person ).should == 'carried-out'
234
+ end
235
+
236
+ it "conjugates 'cast' as 'cast'" do
237
+ "cast".en.past_tense.should == 'cast'
238
+ end
239
+
240
+ it "conjugates 'catch' as 'caught'" do
241
+ "catch".en.past_tense.should == 'caught'
242
+ end
243
+
244
+ it "conjugates 'choose' as 'chose'" do
245
+ "choose".en.past_tense.should == 'chose'
246
+ end
247
+
248
+ it "conjugates 'cling' as 'clung'" do
249
+ "cling".en.past_tense.should == 'clung'
250
+ end
251
+
252
+ it "conjugates 'colorbreed' as 'colorbred'" do
253
+ "colorbreed".en.past_tense.should == 'colorbred'
254
+ end
255
+
256
+ it "conjugates 'come' as 'came'" do
257
+ "come".en.past_tense.should == 'came'
258
+ end
259
+
260
+ it "conjugates 'cost' as 'cost'" do
261
+ "cost".en.past_tense.should == 'cost'
262
+ end
263
+
264
+ it "conjugates 'creep' as 'crept'" do
265
+ "creep".en.past_tense.should == 'crept'
266
+ end
267
+
268
+ it "conjugates 'crossbreed' as 'crossbred'" do
269
+ "crossbreed".en.past_tense.should == 'crossbred'
270
+ end
271
+
272
+ it "conjugates 'cut' as 'cut'" do
273
+ "cut".en.past_tense.should == 'cut'
274
+ end
275
+
276
+ it "conjugates 'deal' as 'dealt'" do
277
+ "deal".en.past_tense.should == 'dealt'
278
+ end
279
+
280
+ it "conjugates 'dig' as 'dug'" do
281
+ "dig".en.past_tense.should == 'dug'
282
+ end
283
+
284
+ it "conjugates 'dive' as 'dove'" do
285
+ "dive".en.past_tense.should == 'dove'
286
+ end
287
+
288
+ it "conjugates 'do' as 'did'" do
289
+ "do".en.past_tense.should == 'did'
290
+ end
291
+
292
+ it "conjugates 'draw' as 'drew'" do
293
+ "draw".en.past_tense.should == 'drew'
294
+ end
295
+
296
+ it "conjugates 'drink' as 'drank'" do
297
+ "drink".en.past_tense.should == 'drank'
298
+ end
299
+
300
+ it "conjugates 'drive' as 'drove'" do
301
+ "drive".en.past_tense.should == 'drove'
302
+ end
303
+
304
+ it "conjugates 'eat' as 'ate'" do
305
+ "eat".en.past_tense.should == 'ate'
306
+ end
307
+
308
+ it "conjugates 'enwind' as 'enwound'" do
309
+ "enwind".en.past_tense.should == 'enwound'
310
+ end
311
+
312
+ it "conjugates 'fall' as 'fell'" do
313
+ "fall".en.past_tense.should == 'fell'
314
+ end
315
+
316
+ it "conjugates 'fast-wind' as 'fast-wound'" do
317
+ "fast-wind".en.past_tense.should == 'fast-wound'
318
+ end
319
+
320
+ it "conjugates 'fast-wind' in first person as 'fast-wound'" do
321
+ "fast-wind".en.past_tense( :first_person ).should == 'fast-wound'
322
+ end
323
+
324
+ it "conjugates 'fast-wind' in third person as 'fast-wound'" do
325
+ "fast-wind".en.past_tense( :third_person ).should == 'fast-wound'
326
+ end
327
+
328
+ it "conjugates 'feed' as 'fed'" do
329
+ "feed".en.past_tense.should == 'fed'
330
+ end
331
+
332
+ it "conjugates 'feel' as 'felt'" do
333
+ "feel".en.past_tense.should == 'felt'
334
+ end
335
+
336
+ it "conjugates 'fight' as 'fought'" do
337
+ "fight".en.past_tense.should == 'fought'
338
+ end
339
+
340
+ it "conjugates 'find' as 'found'" do
341
+ "find".en.past_tense.should == 'found'
342
+ end
343
+
344
+ it "conjugates 'fit' as 'fit'" do
345
+ "fit".en.past_tense.should == 'fit'
346
+ end
347
+
348
+ it "conjugates 'fit-out' as 'fitted-out'" do
349
+ "fit-out".en.past_tense.should == 'fitted-out'
350
+ end
351
+
352
+ it "conjugates 'fit-out' in first person as 'fitted-out'" do
353
+ "fit-out".en.past_tense( :first_person ).should == 'fitted-out'
354
+ end
355
+
356
+ it "conjugates 'fit-out' in third person as 'fitted-out'" do
357
+ "fit-out".en.past_tense( :third_person ).should == 'fitted-out'
358
+ end
359
+
360
+ it "conjugates 'flee' as 'fled'" do
361
+ "flee".en.past_tense.should == 'fled'
362
+ end
363
+
364
+ it "conjugates 'fling' as 'flung'" do
365
+ "fling".en.past_tense.should == 'flung'
366
+ end
367
+
368
+ it "conjugates 'fly' as 'flew'" do
369
+ "fly".en.past_tense.should == 'flew'
370
+ end
371
+
372
+ it "conjugates 'forbear' as 'forbore'" do
373
+ "forbear".en.past_tense.should == 'forbore'
374
+ end
375
+
376
+ it "conjugates 'forbid' as 'forbade'" do
377
+ "forbid".en.past_tense.should == 'forbade'
378
+ end
379
+
380
+ it "conjugates 'forecast' as 'forecast'" do
381
+ "forecast".en.past_tense.should == 'forecast'
382
+ end
383
+
384
+ it "conjugates 'forego' as 'forewent'" do
385
+ "forego".en.past_tense.should == 'forewent'
386
+ end
387
+
388
+ it "conjugates 'foreknow' as 'foreknew'" do
389
+ "foreknow".en.past_tense.should == 'foreknew'
390
+ end
391
+
392
+ it "conjugates 'forerun' as 'foreran'" do
393
+ "forerun".en.past_tense.should == 'foreran'
394
+ end
395
+
396
+ it "conjugates 'forespeak' as 'forespoke'" do
397
+ "forespeak".en.past_tense.should == 'forespoke'
398
+ end
399
+
400
+ it "conjugates 'foreswear' as 'foreswore'" do
401
+ "foreswear".en.past_tense.should == 'foreswore'
402
+ end
403
+
404
+ it "conjugates 'foretell' as 'foretold'" do
405
+ "foretell".en.past_tense.should == 'foretold'
406
+ end
407
+
408
+ it "conjugates 'forget' as 'forgot'" do
409
+ "forget".en.past_tense.should == 'forgot'
410
+ end
411
+
412
+ it "conjugates 'forgive' as 'forgave'" do
413
+ "forgive".en.past_tense.should == 'forgave'
414
+ end
415
+
416
+ it "conjugates 'forsake' as 'forsook'" do
417
+ "forsake".en.past_tense.should == 'forsook'
418
+ end
419
+
420
+ it "conjugates 'forsee' as 'forsaw'" do
421
+ "forsee".en.past_tense.should == 'forsaw'
422
+ end
423
+
424
+ it "conjugates 'freeze' as 'froze'" do
425
+ "freeze".en.past_tense.should == 'froze'
426
+ end
427
+
428
+ it "conjugates 'gainsay' as 'gainsaid'" do
429
+ "gainsay".en.past_tense.should == 'gainsaid'
430
+ end
431
+
432
+ it "conjugates 'get' as 'got'" do
433
+ "get".en.past_tense.should == 'got'
434
+ end
435
+
436
+ it "conjugates 'give' as 'gave'" do
437
+ "give".en.past_tense.should == 'gave'
438
+ end
439
+
440
+ it "conjugates 'go' as 'went'" do
441
+ "go".en.past_tense.should == 'went'
442
+ end
443
+
444
+ it "conjugates 'grind' as 'ground'" do
445
+ "grind".en.past_tense.should == 'ground'
446
+ end
447
+
448
+ it "conjugates 'grow' as 'grew'" do
449
+ "grow".en.past_tense.should == 'grew'
450
+ end
451
+
452
+ it "conjugates 'hagride' as 'hagrode'" do
453
+ "hagride".en.past_tense.should == 'hagrode'
454
+ end
455
+
456
+ it "conjugates 'half-rise' as 'half-rose'" do
457
+ "half-rise".en.past_tense.should == 'half-rose'
458
+ end
459
+
460
+ it "conjugates 'half-rise' in first person as 'half-rose'" do
461
+ "half-rise".en.past_tense( :first_person ).should == 'half-rose'
462
+ end
463
+
464
+ it "conjugates 'half-rise' in third person as 'half-rose'" do
465
+ "half-rise".en.past_tense( :third_person ).should == 'half-rose'
466
+ end
467
+
468
+ it "conjugates 'halterbreak' as 'halterbroke'" do
469
+ "halterbreak".en.past_tense.should == 'halterbroke'
470
+ end
471
+
472
+ it "conjugates 'hamstring' as 'hamstrung'" do
473
+ "hamstring".en.past_tense.should == 'hamstrung'
474
+ end
475
+
476
+ it "conjugates 'hand-feed' as 'hand-fed'" do
477
+ "hand-feed".en.past_tense.should == 'hand-fed'
478
+ end
479
+
480
+ it "conjugates 'hand-feed' in first person as 'hand-fed'" do
481
+ "hand-feed".en.past_tense( :first_person ).should == 'hand-fed'
482
+ end
483
+
484
+ it "conjugates 'hand-feed' in third person as 'hand-fed'" do
485
+ "hand-feed".en.past_tense( :third_person ).should == 'hand-fed'
486
+ end
487
+
488
+ it "conjugates 'handwrite' as 'handwrote'" do
489
+ "handwrite".en.past_tense.should == 'handwrote'
490
+ end
491
+
492
+ it "conjugates 'hang' as 'hung'" do
493
+ pending "figuring out how this is supposed to work" do
494
+ "hang".en.past_tense.should == 'hung'
495
+ end
496
+ end
497
+
498
+ it "conjugates 'hang' in first person as 'hung'" do
499
+ pending "figuring out how this is supposed to work" do
500
+ "hang".en.past_tense( :first_person ).should == 'hung'
501
+ end
502
+ end
503
+
504
+ it "conjugates 'hang' in third person as 'hung'" do
505
+ pending "figuring out how this is supposed to work" do
506
+ "hang".en.past_tense( :third_person ).should == 'hung'
507
+ end
508
+ end
509
+
510
+ it "conjugates 'have' as 'had'" do
511
+ "have".en.past_tense.should == 'had'
512
+ end
513
+
514
+ it "conjugates 'have' as 'had'" do
515
+ "have".en.past_tense.should == 'had'
516
+ end
517
+
518
+ it "conjugates 'hear' as 'heard'" do
519
+ "hear".en.past_tense.should == 'heard'
520
+ end
521
+
522
+ it "conjugates 'hide' as 'hid'" do
523
+ "hide".en.past_tense.should == 'hid'
524
+ end
525
+
526
+ it "conjugates 'hit' as 'hit'" do
527
+ "hit".en.past_tense.should == 'hit'
528
+ end
529
+
530
+ it "conjugates 'hold' as 'held'" do
531
+ "hold".en.past_tense.should == 'held'
532
+ end
533
+
534
+ it "conjugates 'hurt' as 'hurt'" do
535
+ "hurt".en.past_tense.should == 'hurt'
536
+ end
537
+
538
+ it "conjugates 'inbreed' as 'inbred'" do
539
+ "inbreed".en.past_tense.should == 'inbred'
540
+ end
541
+
542
+ it "conjugates 'inbring' as 'inbrought'" do
543
+ "inbring".en.past_tense.should == 'inbrought'
544
+ end
545
+
546
+ it "conjugates 'inlay' as 'inlaid'" do
547
+ "inlay".en.past_tense.should == 'inlaid'
548
+ end
549
+
550
+ it "conjugates 'inset' as 'inset'" do
551
+ "inset".en.past_tense.should == 'inset'
552
+ end
553
+
554
+ it "conjugates 'interbreed' as 'interbred'" do
555
+ "interbreed".en.past_tense.should == 'interbred'
556
+ end
557
+
558
+ it "conjugates 'intercut' as 'intercut'" do
559
+ "intercut".en.past_tense.should == 'intercut'
560
+ end
561
+
562
+ it "conjugates 'interlay' as 'interlaid'" do
563
+ "interlay".en.past_tense.should == 'interlaid'
564
+ end
565
+
566
+ it "conjugates 'interset' as 'interset'" do
567
+ "interset".en.past_tense.should == 'interset'
568
+ end
569
+
570
+ it "conjugates 'interweave' as 'interwove'" do
571
+ "interweave".en.past_tense.should == 'interwove'
572
+ end
573
+
574
+ it "conjugates 'interwind' as 'interwound'" do
575
+ "interwind".en.past_tense.should == 'interwound'
576
+ end
577
+
578
+ it "conjugates 'inweave' as 'inwove'" do
579
+ "inweave".en.past_tense.should == 'inwove'
580
+ end
581
+
582
+ it "conjugates 'jerry-build' as 'jerry-built'" do
583
+ "jerry-build".en.past_tense.should == 'jerry-built'
584
+ end
585
+
586
+ it "conjugates 'jerry-build' in first person as 'jerry-built'" do
587
+ "jerry-build".en.past_tense( :first_person ).should == 'jerry-built'
588
+ end
589
+
590
+ it "conjugates 'jerry-build' in third person as 'jerry-built'" do
591
+ "jerry-build".en.past_tense( :third_person ).should == 'jerry-built'
592
+ end
593
+
594
+ it "conjugates 'keep' as 'kept'" do
595
+ "keep".en.past_tense.should == 'kept'
596
+ end
597
+
598
+ it "conjugates 'kick-off' as 'kicked-off'" do
599
+ "kick-off".en.past_tense.should == 'kicked-off'
600
+ end
601
+
602
+ it "conjugates 'kick-off' in first person as 'kicked-off'" do
603
+ "kick-off".en.past_tense( :first_person ).should == 'kicked-off'
604
+ end
605
+
606
+ it "conjugates 'kick-off' in third person as 'kicked-off'" do
607
+ "kick-off".en.past_tense( :third_person ).should == 'kicked-off'
608
+ end
609
+
610
+ it "conjugates 'kneel' as 'knelt'" do
611
+ "kneel".en.past_tense.should == 'knelt'
612
+ end
613
+
614
+ it "conjugates 'knit' as 'knitted'" do
615
+ "knit".en.past_tense.should == 'knitted'
616
+ end
617
+
618
+ it "conjugates 'know' as 'knew'" do
619
+ "know".en.past_tense.should == 'knew'
620
+ end
621
+
622
+ it "conjugates 'landslide' as 'landslid'" do
623
+ "landslide".en.past_tense.should == 'landslid'
624
+ end
625
+
626
+ it "conjugates 'lay' as 'laid'" do
627
+ "lay".en.past_tense.should == 'laid'
628
+ end
629
+
630
+ it "conjugates 'lead' as 'led'" do
631
+ "lead".en.past_tense.should == 'led'
632
+ end
633
+
634
+ it "conjugates 'leave' as 'left'" do
635
+ "leave".en.past_tense.should == 'left'
636
+ end
637
+
638
+ it "conjugates 'lend' as 'lent'" do
639
+ "lend".en.past_tense.should == 'lent'
640
+ end
641
+
642
+ it "conjugates 'let' as 'let'" do
643
+ "let".en.past_tense.should == 'let'
644
+ end
645
+
646
+ it "conjugates 'lie' as 'lay'" do
647
+ pending "figuring out how this is supposed to work" do
648
+ "lie".en.past_tense.should == 'lay'
649
+ end
650
+ end
651
+
652
+ it "conjugates 'lie' in first person as 'lay'" do
653
+ pending "figuring out how this is supposed to work" do
654
+ "lie".en.past_tense( :first_person ).should == 'lay'
655
+ end
656
+ end
657
+
658
+ it "conjugates 'lie' in third person as 'lay'" do
659
+ pending "figuring out how this is supposed to work" do
660
+ "lie".en.past_tense( :third_person ).should == 'lay'
661
+ end
662
+ end
663
+
664
+ it "conjugates 'light' as 'lit'" do
665
+ "light".en.past_tense.should == 'lit'
666
+ end
667
+
668
+ it "conjugates 'light-up' as 'lit-up'" do
669
+ "light-up".en.past_tense.should == 'lit-up'
670
+ end
671
+
672
+ it "conjugates 'light-up' in first person as 'lit-up'" do
673
+ "light-up".en.past_tense( :first_person ).should == 'lit-up'
674
+ end
675
+
676
+ it "conjugates 'light-up' in third person as 'lit-up'" do
677
+ "light-up".en.past_tense( :third_person ).should == 'lit-up'
678
+ end
679
+
680
+ it "conjugates 'lip-read' as 'lip-read'" do
681
+ "lip-read".en.past_tense.should == 'lip-read'
682
+ end
683
+
684
+ it "conjugates 'lip-read' in first person as 'lip-read'" do
685
+ "lip-read".en.past_tense( :first_person ).should == 'lip-read'
686
+ end
687
+
688
+ it "conjugates 'lip-read' in third person as 'lip-read'" do
689
+ "lip-read".en.past_tense( :third_person ).should == 'lip-read'
690
+ end
691
+
692
+ it "conjugates 'loop-up' as 'looped-up'" do
693
+ "loop-up".en.past_tense.should == 'looped-up'
694
+ end
695
+
696
+ it "conjugates 'loop-up' in first person as 'looped-up'" do
697
+ "loop-up".en.past_tense( :first_person ).should == 'looped-up'
698
+ end
699
+
700
+ it "conjugates 'loop-up' in third person as 'looped-up'" do
701
+ "loop-up".en.past_tense( :third_person ).should == 'looped-up'
702
+ end
703
+
704
+ it "conjugates 'lose' as 'lost'" do
705
+ "lose".en.past_tense.should == 'lost'
706
+ end
707
+
708
+ it "conjugates 'make' as 'made'" do
709
+ "make".en.past_tense.should == 'made'
710
+ end
711
+
712
+ it "conjugates 'make-out' as 'made-out'" do
713
+ "make-out".en.past_tense.should == 'made-out'
714
+ end
715
+
716
+ it "conjugates 'make-out' in first person as 'made-out'" do
717
+ "make-out".en.past_tense( :first_person ).should == 'made-out'
718
+ end
719
+
720
+ it "conjugates 'make-out' in third person as 'made-out'" do
721
+ "make-out".en.past_tense( :third_person ).should == 'made-out'
722
+ end
723
+
724
+ it "conjugates 'mean' as 'meant'" do
725
+ "mean".en.past_tense.should == 'meant'
726
+ end
727
+
728
+ it "conjugates 'meet' as 'met'" do
729
+ "meet".en.past_tense.should == 'met'
730
+ end
731
+
732
+ it "conjugates 'misbecome' as 'misbecame'" do
733
+ "misbecome".en.past_tense.should == 'misbecame'
734
+ end
735
+
736
+ it "conjugates 'miscast' as 'miscast'" do
737
+ "miscast".en.past_tense.should == 'miscast'
738
+ end
739
+
740
+ it "conjugates 'miscut' as 'miscut'" do
741
+ "miscut".en.past_tense.should == 'miscut'
742
+ end
743
+
744
+ it "conjugates 'misdeal' as 'misdealt'" do
745
+ "misdeal".en.past_tense.should == 'misdealt'
746
+ end
747
+
748
+ it "conjugates 'misdo' as 'misdid'" do
749
+ "misdo".en.past_tense.should == 'misdid'
750
+ end
751
+
752
+ it "conjugates 'mishear' as 'misheard'" do
753
+ "mishear".en.past_tense.should == 'misheard'
754
+ end
755
+
756
+ it "conjugates 'mishit' as 'mishit'" do
757
+ "mishit".en.past_tense.should == 'mishit'
758
+ end
759
+
760
+ it "conjugates 'mislay' as 'mislaid'" do
761
+ "mislay".en.past_tense.should == 'mislaid'
762
+ end
763
+
764
+ it "conjugates 'mislead' as 'misled'" do
765
+ "mislead".en.past_tense.should == 'misled'
766
+ end
767
+
768
+ it "conjugates 'misread' as 'misread'" do
769
+ "misread".en.past_tense.should == 'misread'
770
+ end
771
+
772
+ it "conjugates 'missay' as 'missaid'" do
773
+ "missay".en.past_tense.should == 'missaid'
774
+ end
775
+
776
+ it "conjugates 'missend' as 'missent'" do
777
+ "missend".en.past_tense.should == 'missent'
778
+ end
779
+
780
+ it "conjugates 'misspeak' as 'misspoke'" do
781
+ "misspeak".en.past_tense.should == 'misspoke'
782
+ end
783
+
784
+ it "conjugates 'misspend' as 'misspent'" do
785
+ "misspend".en.past_tense.should == 'misspent'
786
+ end
787
+
788
+ it "conjugates 'misswear' as 'misswore'" do
789
+ "misswear".en.past_tense.should == 'misswore'
790
+ end
791
+
792
+ it "conjugates 'mistake' as 'mistook'" do
793
+ "mistake".en.past_tense.should == 'mistook'
794
+ end
795
+
796
+ it "conjugates 'misteach' as 'mistaught'" do
797
+ "misteach".en.past_tense.should == 'mistaught'
798
+ end
799
+
800
+ it "conjugates 'mistell' as 'mistold'" do
801
+ "mistell".en.past_tense.should == 'mistold'
802
+ end
803
+
804
+ it "conjugates 'misthink' as 'misthought'" do
805
+ "misthink".en.past_tense.should == 'misthought'
806
+ end
807
+
808
+ it "conjugates 'misunderstand' as 'misunderstood'" do
809
+ "misunderstand".en.past_tense.should == 'misunderstood'
810
+ end
811
+
812
+ it "conjugates 'miswear' as 'miswore'" do
813
+ "miswear".en.past_tense.should == 'miswore'
814
+ end
815
+
816
+ it "conjugates 'miswed' as 'miswed'" do
817
+ "miswed".en.past_tense.should == 'miswed'
818
+ end
819
+
820
+ it "conjugates 'miswrite' as 'miswrote'" do
821
+ "miswrite".en.past_tense.should == 'miswrote'
822
+ end
823
+
824
+ it "conjugates 'offset' as 'offset'" do
825
+ "offset".en.past_tense.should == 'offset'
826
+ end
827
+
828
+ it "conjugates 'outbid' as 'outbid'" do
829
+ "outbid".en.past_tense.should == 'outbid'
830
+ end
831
+
832
+ it "conjugates 'outbreed' as 'outbred'" do
833
+ "outbreed".en.past_tense.should == 'outbred'
834
+ end
835
+
836
+ it "conjugates 'outdo' as 'outdid'" do
837
+ "outdo".en.past_tense.should == 'outdid'
838
+ end
839
+
840
+ it "conjugates 'outdraw' as 'outdrew'" do
841
+ "outdraw".en.past_tense.should == 'outdrew'
842
+ end
843
+
844
+ it "conjugates 'outdrink' as 'outdrank'" do
845
+ "outdrink".en.past_tense.should == 'outdrank'
846
+ end
847
+
848
+ it "conjugates 'outdrive' as 'outdrove'" do
849
+ "outdrive".en.past_tense.should == 'outdrove'
850
+ end
851
+
852
+ it "conjugates 'outfight' as 'outfought'" do
853
+ "outfight".en.past_tense.should == 'outfought'
854
+ end
855
+
856
+ it "conjugates 'outfly' as 'outflew'" do
857
+ "outfly".en.past_tense.should == 'outflew'
858
+ end
859
+
860
+ it "conjugates 'outgrow' as 'outgrew'" do
861
+ "outgrow".en.past_tense.should == 'outgrew'
862
+ end
863
+
864
+ it "conjugates 'outlay' as 'outlaid'" do
865
+ "outlay".en.past_tense.should == 'outlaid'
866
+ end
867
+
868
+ it "conjugates 'outride' as 'outrode'" do
869
+ "outride".en.past_tense.should == 'outrode'
870
+ end
871
+
872
+ it "conjugates 'outrun' as 'outran'" do
873
+ "outrun".en.past_tense.should == 'outran'
874
+ end
875
+
876
+ it "conjugates 'outsee' as 'outsaw'" do
877
+ "outsee".en.past_tense.should == 'outsaw'
878
+ end
879
+
880
+ it "conjugates 'outsell' as 'outsold'" do
881
+ "outsell".en.past_tense.should == 'outsold'
882
+ end
883
+
884
+ it "conjugates 'outshoot' as 'outshot'" do
885
+ "outshoot".en.past_tense.should == 'outshot'
886
+ end
887
+
888
+ it "conjugates 'outsing' as 'outsang'" do
889
+ "outsing".en.past_tense.should == 'outsang'
890
+ end
891
+
892
+ it "conjugates 'outsit' as 'outsat'" do
893
+ "outsit".en.past_tense.should == 'outsat'
894
+ end
895
+
896
+ it "conjugates 'outsleep' as 'outslept'" do
897
+ "outsleep".en.past_tense.should == 'outslept'
898
+ end
899
+
900
+ it "conjugates 'outspeak' as 'outspoke'" do
901
+ "outspeak".en.past_tense.should == 'outspoke'
902
+ end
903
+
904
+ it "conjugates 'outspeed' as 'outsped'" do
905
+ "outspeed".en.past_tense.should == 'outsped'
906
+ end
907
+
908
+ it "conjugates 'outspend' as 'outspent'" do
909
+ "outspend".en.past_tense.should == 'outspent'
910
+ end
911
+
912
+ it "conjugates 'outspin' as 'outspun'" do
913
+ "outspin".en.past_tense.should == 'outspun'
914
+ end
915
+
916
+ it "conjugates 'outspring' as 'outsprang'" do
917
+ "outspring".en.past_tense.should == 'outsprang'
918
+ end
919
+
920
+ it "conjugates 'outstand' as 'outstood'" do
921
+ "outstand".en.past_tense.should == 'outstood'
922
+ end
923
+
924
+ it "conjugates 'outswear' as 'outswore'" do
925
+ "outswear".en.past_tense.should == 'outswore'
926
+ end
927
+
928
+ it "conjugates 'outswim' as 'outswam'" do
929
+ "outswim".en.past_tense.should == 'outswam'
930
+ end
931
+
932
+ it "conjugates 'outtell' as 'outtold'" do
933
+ "outtell".en.past_tense.should == 'outtold'
934
+ end
935
+
936
+ it "conjugates 'outthink' as 'outthought'" do
937
+ "outthink".en.past_tense.should == 'outthought'
938
+ end
939
+
940
+ it "conjugates 'outthrow' as 'outthrew'" do
941
+ "outthrow".en.past_tense.should == 'outthrew'
942
+ end
943
+
944
+ it "conjugates 'outwear' as 'outwore'" do
945
+ "outwear".en.past_tense.should == 'outwore'
946
+ end
947
+
948
+ it "conjugates 'outwind' as 'outwound'" do
949
+ "outwind".en.past_tense.should == 'outwound'
950
+ end
951
+
952
+ it "conjugates 'outwrite' as 'outwrote'" do
953
+ "outwrite".en.past_tense.should == 'outwrote'
954
+ end
955
+
956
+ it "conjugates 'overbear' as 'overbore'" do
957
+ "overbear".en.past_tense.should == 'overbore'
958
+ end
959
+
960
+ it "conjugates 'overbid' as 'overbid'" do
961
+ "overbid".en.past_tense.should == 'overbid'
962
+ end
963
+
964
+ it "conjugates 'overbreed' as 'overbred'" do
965
+ "overbreed".en.past_tense.should == 'overbred'
966
+ end
967
+
968
+ it "conjugates 'overbuild' as 'overbuilt'" do
969
+ "overbuild".en.past_tense.should == 'overbuilt'
970
+ end
971
+
972
+ it "conjugates 'overbuy' as 'overbought'" do
973
+ "overbuy".en.past_tense.should == 'overbought'
974
+ end
975
+
976
+ it "conjugates 'overcast' as 'overcast'" do
977
+ "overcast".en.past_tense.should == 'overcast'
978
+ end
979
+
980
+ it "conjugates 'overcome' as 'overcame'" do
981
+ "overcome".en.past_tense.should == 'overcame'
982
+ end
983
+
984
+ it "conjugates 'overcut' as 'overcut'" do
985
+ "overcut".en.past_tense.should == 'overcut'
986
+ end
987
+
988
+ it "conjugates 'overdo' as 'overdid'" do
989
+ "overdo".en.past_tense.should == 'overdid'
990
+ end
991
+
992
+ it "conjugates 'overdraw' as 'overdrew'" do
993
+ "overdraw".en.past_tense.should == 'overdrew'
994
+ end
995
+
996
+ it "conjugates 'overdrink' as 'overdrank'" do
997
+ "overdrink".en.past_tense.should == 'overdrank'
998
+ end
999
+
1000
+ it "conjugates 'overdrive' as 'overdrove'" do
1001
+ "overdrive".en.past_tense.should == 'overdrove'
1002
+ end
1003
+
1004
+ it "conjugates 'overeat' as 'overate'" do
1005
+ "overeat".en.past_tense.should == 'overate'
1006
+ end
1007
+
1008
+ it "conjugates 'overfeed' as 'overfed'" do
1009
+ "overfeed".en.past_tense.should == 'overfed'
1010
+ end
1011
+
1012
+ it "conjugates 'overhang' as 'overhung'" do
1013
+ "overhang".en.past_tense.should == 'overhung'
1014
+ end
1015
+
1016
+ it "conjugates 'overhear' as 'overheard'" do
1017
+ "overhear".en.past_tense.should == 'overheard'
1018
+ end
1019
+
1020
+ it "conjugates 'overlay' as 'overlaid'" do
1021
+ "overlay".en.past_tense.should == 'overlaid'
1022
+ end
1023
+
1024
+ it "conjugates 'overlie' as 'overlay'" do
1025
+ "overlie".en.past_tense.should == 'overlay'
1026
+ end
1027
+
1028
+ it "conjugates 'overpay' as 'overpaid'" do
1029
+ "overpay".en.past_tense.should == 'overpaid'
1030
+ end
1031
+
1032
+ it "conjugates 'override' as 'overrode'" do
1033
+ "override".en.past_tense.should == 'overrode'
1034
+ end
1035
+
1036
+ it "conjugates 'overrun' as 'overran'" do
1037
+ "overrun".en.past_tense.should == 'overran'
1038
+ end
1039
+
1040
+ it "conjugates 'oversee' as 'oversaw'" do
1041
+ "oversee".en.past_tense.should == 'oversaw'
1042
+ end
1043
+
1044
+ it "conjugates 'oversell' as 'oversold'" do
1045
+ "oversell".en.past_tense.should == 'oversold'
1046
+ end
1047
+
1048
+ it "conjugates 'overset' as 'overset'" do
1049
+ "overset".en.past_tense.should == 'overset'
1050
+ end
1051
+
1052
+ it "conjugates 'overshoot' as 'overshot'" do
1053
+ "overshoot".en.past_tense.should == 'overshot'
1054
+ end
1055
+
1056
+ it "conjugates 'oversleep' as 'overslept'" do
1057
+ "oversleep".en.past_tense.should == 'overslept'
1058
+ end
1059
+
1060
+ it "conjugates 'overslide' as 'overslid'" do
1061
+ "overslide".en.past_tense.should == 'overslid'
1062
+ end
1063
+
1064
+ it "conjugates 'oversling' as 'overslung'" do
1065
+ "oversling".en.past_tense.should == 'overslung'
1066
+ end
1067
+
1068
+ it "conjugates 'overspeak' as 'overspoke'" do
1069
+ "overspeak".en.past_tense.should == 'overspoke'
1070
+ end
1071
+
1072
+ it "conjugates 'overspeed' as 'oversped'" do
1073
+ "overspeed".en.past_tense.should == 'oversped'
1074
+ end
1075
+
1076
+ it "conjugates 'overspend' as 'overspent'" do
1077
+ "overspend".en.past_tense.should == 'overspent'
1078
+ end
1079
+
1080
+ it "conjugates 'overspin' as 'overspun'" do
1081
+ "overspin".en.past_tense.should == 'overspun'
1082
+ end
1083
+
1084
+ it "conjugates 'overspread' as 'overspread'" do
1085
+ "overspread".en.past_tense.should == 'overspread'
1086
+ end
1087
+
1088
+ it "conjugates 'overspring' as 'oversprang'" do
1089
+ "overspring".en.past_tense.should == 'oversprang'
1090
+ end
1091
+
1092
+ it "conjugates 'overstand' as 'overstood'" do
1093
+ "overstand".en.past_tense.should == 'overstood'
1094
+ end
1095
+
1096
+ it "conjugates 'overstride' as 'overstrode'" do
1097
+ "overstride".en.past_tense.should == 'overstrode'
1098
+ end
1099
+
1100
+ it "conjugates 'overstrike' as 'overstruck'" do
1101
+ "overstrike".en.past_tense.should == 'overstruck'
1102
+ end
1103
+
1104
+ it "conjugates 'overstring' as 'overstrung'" do
1105
+ "overstring".en.past_tense.should == 'overstrung'
1106
+ end
1107
+
1108
+ it "conjugates 'overstrive' as 'overstrove'" do
1109
+ "overstrive".en.past_tense.should == 'overstrove'
1110
+ end
1111
+
1112
+ it "conjugates 'overtake' as 'overtook'" do
1113
+ "overtake".en.past_tense.should == 'overtook'
1114
+ end
1115
+
1116
+ it "conjugates 'overthink' as 'overthought'" do
1117
+ "overthink".en.past_tense.should == 'overthought'
1118
+ end
1119
+
1120
+ it "conjugates 'overthrow' as 'overthrew'" do
1121
+ "overthrow".en.past_tense.should == 'overthrew'
1122
+ end
1123
+
1124
+ it "conjugates 'overwear' as 'overwore'" do
1125
+ "overwear".en.past_tense.should == 'overwore'
1126
+ end
1127
+
1128
+ it "conjugates 'overwind' as 'overwound'" do
1129
+ "overwind".en.past_tense.should == 'overwound'
1130
+ end
1131
+
1132
+ it "conjugates 'overwrite' as 'overwrote'" do
1133
+ "overwrite".en.past_tense.should == 'overwrote'
1134
+ end
1135
+
1136
+ it "conjugates 'pay' as 'paid'" do
1137
+ "pay".en.past_tense.should == 'paid'
1138
+ end
1139
+
1140
+ it "conjugates 'picnic' as 'picnicked'" do
1141
+ "picnic".en.past_tense.should == 'picnicked'
1142
+ end
1143
+
1144
+ it "conjugates 'plead' as 'pleaded'" do
1145
+ "plead".en.past_tense.should == 'pleaded'
1146
+ end
1147
+
1148
+ it "conjugates 'prebuild' as 'prebuilt'" do
1149
+ "prebuild".en.past_tense.should == 'prebuilt'
1150
+ end
1151
+
1152
+ it "conjugates 'predo' as 'predid'" do
1153
+ "predo".en.past_tense.should == 'predid'
1154
+ end
1155
+
1156
+ it "conjugates 'premake' as 'premade'" do
1157
+ "premake".en.past_tense.should == 'premade'
1158
+ end
1159
+
1160
+ it "conjugates 'prepay' as 'prepaid'" do
1161
+ "prepay".en.past_tense.should == 'prepaid'
1162
+ end
1163
+
1164
+ it "conjugates 'presell' as 'presold'" do
1165
+ "presell".en.past_tense.should == 'presold'
1166
+ end
1167
+
1168
+ it "conjugates 'preset' as 'preset'" do
1169
+ "preset".en.past_tense.should == 'preset'
1170
+ end
1171
+
1172
+ it "conjugates 'preshrink' as 'preshrank'" do
1173
+ "preshrink".en.past_tense.should == 'preshrank'
1174
+ end
1175
+
1176
+ it "conjugates 'presplit' as 'presplit'" do
1177
+ "presplit".en.past_tense.should == 'presplit'
1178
+ end
1179
+
1180
+ it "conjugates 'proofread' as 'proofread'" do
1181
+ "proofread".en.past_tense.should == 'proofread'
1182
+ end
1183
+
1184
+ it "conjugates 'prove' as 'proved'" do
1185
+ "prove".en.past_tense.should == 'proved'
1186
+ end
1187
+
1188
+ it "conjugates 'put' as 'put'" do
1189
+ "put".en.past_tense.should == 'put'
1190
+ end
1191
+
1192
+ it "conjugates 'quick-freeze' as 'quick-froze'" do
1193
+ "quick-freeze".en.past_tense.should == 'quick-froze'
1194
+ end
1195
+
1196
+ it "conjugates 'quick-freeze' in first person as 'quick-froze'" do
1197
+ "quick-freeze".en.past_tense( :first_person ).should == 'quick-froze'
1198
+ end
1199
+
1200
+ it "conjugates 'quick-freeze' in third person as 'quick-froze'" do
1201
+ "quick-freeze".en.past_tense( :third_person ).should == 'quick-froze'
1202
+ end
1203
+
1204
+ it "conjugates 'quickfreeze' as 'quickfroze'" do
1205
+ "quickfreeze".en.past_tense.should == 'quickfroze'
1206
+ end
1207
+
1208
+ it "conjugates 'quit' as 'quit'" do
1209
+ "quit".en.past_tense.should == 'quit'
1210
+ end
1211
+
1212
+ it "conjugates 're-cast' as 're-cast'" do
1213
+ "re-cast".en.past_tense.should == 're-cast'
1214
+ end
1215
+
1216
+ it "conjugates 're-cast' in first person as 're-cast'" do
1217
+ "re-cast".en.past_tense( :first_person ).should == 're-cast'
1218
+ end
1219
+
1220
+ it "conjugates 're-cast' in third person as 're-cast'" do
1221
+ "re-cast".en.past_tense( :third_person ).should == 're-cast'
1222
+ end
1223
+
1224
+ it "conjugates 're-lay' as 're-laid'" do
1225
+ "re-lay".en.past_tense.should == 're-laid'
1226
+ end
1227
+
1228
+ it "conjugates 're-lay' in first person as 're-laid'" do
1229
+ "re-lay".en.past_tense( :first_person ).should == 're-laid'
1230
+ end
1231
+
1232
+ it "conjugates 're-lay' in third person as 're-laid'" do
1233
+ "re-lay".en.past_tense( :third_person ).should == 're-laid'
1234
+ end
1235
+
1236
+ it "conjugates 're-make' as 're-made'" do
1237
+ "re-make".en.past_tense.should == 're-made'
1238
+ end
1239
+
1240
+ it "conjugates 're-make' in first person as 're-made'" do
1241
+ "re-make".en.past_tense( :first_person ).should == 're-made'
1242
+ end
1243
+
1244
+ it "conjugates 're-make' in third person as 're-made'" do
1245
+ "re-make".en.past_tense( :third_person ).should == 're-made'
1246
+ end
1247
+
1248
+ it "conjugates 're-sell' as 're-sold'" do
1249
+ "re-sell".en.past_tense.should == 're-sold'
1250
+ end
1251
+
1252
+ it "conjugates 're-sell' in first person as 're-sold'" do
1253
+ "re-sell".en.past_tense( :first_person ).should == 're-sold'
1254
+ end
1255
+
1256
+ it "conjugates 're-sell' in third person as 're-sold'" do
1257
+ "re-sell".en.past_tense( :third_person ).should == 're-sold'
1258
+ end
1259
+
1260
+ it "conjugates 're-tell' as 're-told'" do
1261
+ "re-tell".en.past_tense.should == 're-told'
1262
+ end
1263
+
1264
+ it "conjugates 're-tell' in first person as 're-told'" do
1265
+ "re-tell".en.past_tense( :first_person ).should == 're-told'
1266
+ end
1267
+
1268
+ it "conjugates 're-tell' in third person as 're-told'" do
1269
+ "re-tell".en.past_tense( :third_person ).should == 're-told'
1270
+ end
1271
+
1272
+ it "conjugates 'read' as 'read'" do
1273
+ "read".en.past_tense.should == 'read'
1274
+ end
1275
+
1276
+ it "conjugates 'rebid' as 'rebid'" do
1277
+ "rebid".en.past_tense.should == 'rebid'
1278
+ end
1279
+
1280
+ it "conjugates 'rebind' as 'rebound'" do
1281
+ "rebind".en.past_tense.should == 'rebound'
1282
+ end
1283
+
1284
+ it "conjugates 'rebroadcast' as 'rebroadcast'" do
1285
+ "rebroadcast".en.past_tense.should == 'rebroadcast'
1286
+ end
1287
+
1288
+ it "conjugates 'rebuild' as 'rebuilt'" do
1289
+ "rebuild".en.past_tense.should == 'rebuilt'
1290
+ end
1291
+
1292
+ it "conjugates 'recast' as 'recast'" do
1293
+ "recast".en.past_tense.should == 'recast'
1294
+ end
1295
+
1296
+ it "conjugates 'recut' as 'recut'" do
1297
+ "recut".en.past_tense.should == 'recut'
1298
+ end
1299
+
1300
+ it "conjugates 'redeal' as 'redealt'" do
1301
+ "redeal".en.past_tense.should == 'redealt'
1302
+ end
1303
+
1304
+ it "conjugates 'redo' as 'redid'" do
1305
+ "redo".en.past_tense.should == 'redid'
1306
+ end
1307
+
1308
+ it "conjugates 'redraw' as 'redrew'" do
1309
+ "redraw".en.past_tense.should == 'redrew'
1310
+ end
1311
+
1312
+ it "conjugates 'refit' as 'refit'" do
1313
+ "refit".en.past_tense.should == 'refit'
1314
+ end
1315
+
1316
+ it "conjugates 'regrind' as 'reground'" do
1317
+ "regrind".en.past_tense.should == 'reground'
1318
+ end
1319
+
1320
+ it "conjugates 'regrow' as 'regrew'" do
1321
+ "regrow".en.past_tense.should == 'regrew'
1322
+ end
1323
+
1324
+ it "conjugates 'rehang' as 'rehung'" do
1325
+ "rehang".en.past_tense.should == 'rehung'
1326
+ end
1327
+
1328
+ it "conjugates 'rehear' as 'reheard'" do
1329
+ "rehear".en.past_tense.should == 'reheard'
1330
+ end
1331
+
1332
+ it "conjugates 'reknit' as 'reknitted'" do
1333
+ "reknit".en.past_tense.should == 'reknitted'
1334
+ end
1335
+
1336
+ it "conjugates 'relay' as 'relaid'" do
1337
+ "relay".en.past_tense.should == 'relaid'
1338
+ end
1339
+
1340
+ it "conjugates 'remake' as 'remade'" do
1341
+ "remake".en.past_tense.should == 'remade'
1342
+ end
1343
+
1344
+ it "conjugates 'repay' as 'repaid'" do
1345
+ "repay".en.past_tense.should == 'repaid'
1346
+ end
1347
+
1348
+ it "conjugates 'rerun' as 'reran'" do
1349
+ "rerun".en.past_tense.should == 'reran'
1350
+ end
1351
+
1352
+ it "conjugates 'resell' as 'resold'" do
1353
+ "resell".en.past_tense.should == 'resold'
1354
+ end
1355
+
1356
+ it "conjugates 'resend' as 'resent'" do
1357
+ "resend".en.past_tense.should == 'resent'
1358
+ end
1359
+
1360
+ it "conjugates 'reset' as 'reset'" do
1361
+ "reset".en.past_tense.should == 'reset'
1362
+ end
1363
+
1364
+ it "conjugates 'resew' as 'resewed'" do
1365
+ "resew".en.past_tense.should == 'resewed'
1366
+ end
1367
+
1368
+ it "conjugates 'retake' as 'retook'" do
1369
+ "retake".en.past_tense.should == 'retook'
1370
+ end
1371
+
1372
+ it "conjugates 'reteach' as 'retaught'" do
1373
+ "reteach".en.past_tense.should == 'retaught'
1374
+ end
1375
+
1376
+ it "conjugates 'retear' as 'retore'" do
1377
+ "retear".en.past_tense.should == 'retore'
1378
+ end
1379
+
1380
+ it "conjugates 'retell' as 'retold'" do
1381
+ "retell".en.past_tense.should == 'retold'
1382
+ end
1383
+
1384
+ it "conjugates 'rethink' as 'rethought'" do
1385
+ "rethink".en.past_tense.should == 'rethought'
1386
+ end
1387
+
1388
+ it "conjugates 'retread' as 'retrod'" do
1389
+ "retread".en.past_tense.should == 'retrod'
1390
+ end
1391
+
1392
+ it "conjugates 'retrofit' as 'retrofit'" do
1393
+ "retrofit".en.past_tense.should == 'retrofit'
1394
+ end
1395
+
1396
+ it "conjugates 'reweave' as 'rewove'" do
1397
+ "reweave".en.past_tense.should == 'rewove'
1398
+ end
1399
+
1400
+ it "conjugates 'rewed' as 'rewed'" do
1401
+ "rewed".en.past_tense.should == 'rewed'
1402
+ end
1403
+
1404
+ it "conjugates 'rewet' as 'rewet'" do
1405
+ "rewet".en.past_tense.should == 'rewet'
1406
+ end
1407
+
1408
+ it "conjugates 'rewin' as 'rewon'" do
1409
+ "rewin".en.past_tense.should == 'rewon'
1410
+ end
1411
+
1412
+ it "conjugates 'rewind' as 'rewound'" do
1413
+ "rewind".en.past_tense.should == 'rewound'
1414
+ end
1415
+
1416
+ it "conjugates 'rewrite' as 'rewrote'" do
1417
+ "rewrite".en.past_tense.should == 'rewrote'
1418
+ end
1419
+
1420
+ it "conjugates 'rid' as 'rid'" do
1421
+ "rid".en.past_tense.should == 'rid'
1422
+ end
1423
+
1424
+ it "conjugates 'ride' as 'rode'" do
1425
+ "ride".en.past_tense.should == 'rode'
1426
+ end
1427
+
1428
+ it "conjugates 'ring' as 'rang'" do
1429
+ "ring".en.past_tense.should == 'rang'
1430
+ end
1431
+
1432
+ it "conjugates 'rise' as 'rose'" do
1433
+ "rise".en.past_tense.should == 'rose'
1434
+ end
1435
+
1436
+ it "conjugates 'run' as 'ran'" do
1437
+ "run".en.past_tense.should == 'ran'
1438
+ end
1439
+
1440
+ it "conjugates 'sand-cast' as 'sand-cast'" do
1441
+ "sand-cast".en.past_tense.should == 'sand-cast'
1442
+ end
1443
+
1444
+ it "conjugates 'sand-cast' in first person as 'sand-cast'" do
1445
+ "sand-cast".en.past_tense( :first_person ).should == 'sand-cast'
1446
+ end
1447
+
1448
+ it "conjugates 'sand-cast' in third person as 'sand-cast'" do
1449
+ "sand-cast".en.past_tense( :third_person ).should == 'sand-cast'
1450
+ end
1451
+
1452
+ it "conjugates 'sandcast' as 'sandcast'" do
1453
+ "sandcast".en.past_tense.should == 'sandcast'
1454
+ end
1455
+
1456
+ it "conjugates 'say' as 'said'" do
1457
+ "say".en.past_tense.should == 'said'
1458
+ end
1459
+
1460
+ it "conjugates 'see' as 'saw'" do
1461
+ "see".en.past_tense.should == 'saw'
1462
+ end
1463
+
1464
+ it "conjugates 'seek' as 'sought'" do
1465
+ "seek".en.past_tense.should == 'sought'
1466
+ end
1467
+
1468
+ it "conjugates 'self-feed' as 'self-fed'" do
1469
+ "self-feed".en.past_tense.should == 'self-fed'
1470
+ end
1471
+
1472
+ it "conjugates 'self-feed' in first person as 'self-fed'" do
1473
+ "self-feed".en.past_tense( :first_person ).should == 'self-fed'
1474
+ end
1475
+
1476
+ it "conjugates 'self-feed' in third person as 'self-fed'" do
1477
+ "self-feed".en.past_tense( :third_person ).should == 'self-fed'
1478
+ end
1479
+
1480
+ it "conjugates 'selffeed' as 'selffed'" do
1481
+ "selffeed".en.past_tense.should == 'selffed'
1482
+ end
1483
+
1484
+ it "conjugates 'sell' as 'sold'" do
1485
+ "sell".en.past_tense.should == 'sold'
1486
+ end
1487
+
1488
+ it "conjugates 'send' as 'sent'" do
1489
+ "send".en.past_tense.should == 'sent'
1490
+ end
1491
+
1492
+ it "conjugates 'set' as 'set'" do
1493
+ "set".en.past_tense.should == 'set'
1494
+ end
1495
+
1496
+ it "conjugates 'sew' as 'sewed'" do
1497
+ "sew".en.past_tense.should == 'sewed'
1498
+ end
1499
+
1500
+ it "conjugates 'shake' as 'shook'" do
1501
+ "shake".en.past_tense.should == 'shook'
1502
+ end
1503
+
1504
+ it "conjugates 'shear' as 'shore'" do
1505
+ "shear".en.past_tense.should == 'shore'
1506
+ end
1507
+
1508
+ it "conjugates 'shed' as 'shed'" do
1509
+ "shed".en.past_tense.should == 'shed'
1510
+ end
1511
+
1512
+ it "conjugates 'shoot' as 'shot'" do
1513
+ "shoot".en.past_tense.should == 'shot'
1514
+ end
1515
+
1516
+ it "conjugates 'show' as 'showed'" do
1517
+ "show".en.past_tense.should == 'showed'
1518
+ end
1519
+
1520
+ it "conjugates 'shrink' as 'shrank'" do
1521
+ "shrink".en.past_tense.should == 'shrank'
1522
+ end
1523
+
1524
+ it "conjugates 'shut' as 'shut'" do
1525
+ "shut".en.past_tense.should == 'shut'
1526
+ end
1527
+
1528
+ it "conjugates 'sight-read' as 'sight-read'" do
1529
+ "sight-read".en.past_tense.should == 'sight-read'
1530
+ end
1531
+
1532
+ it "conjugates 'sight-read' in first person as 'sight-read'" do
1533
+ "sight-read".en.past_tense( :first_person ).should == 'sight-read'
1534
+ end
1535
+
1536
+ it "conjugates 'sight-read' in third person as 'sight-read'" do
1537
+ "sight-read".en.past_tense( :third_person ).should == 'sight-read'
1538
+ end
1539
+
1540
+ it "conjugates 'sightread' as 'sightread'" do
1541
+ "sightread".en.past_tense.should == 'sightread'
1542
+ end
1543
+
1544
+ it "conjugates 'sign-on' as 'signed-on'" do
1545
+ "sign-on".en.past_tense.should == 'signed-on'
1546
+ end
1547
+
1548
+ it "conjugates 'sign-on' in first person as 'signed-on'" do
1549
+ "sign-on".en.past_tense( :first_person ).should == 'signed-on'
1550
+ end
1551
+
1552
+ it "conjugates 'sign-on' in third person as 'signed-on'" do
1553
+ "sign-on".en.past_tense( :third_person ).should == 'signed-on'
1554
+ end
1555
+
1556
+ it "conjugates 'sing' as 'sang'" do
1557
+ "sing".en.past_tense.should == 'sang'
1558
+ end
1559
+
1560
+ it "conjugates 'sink' as 'sank'" do
1561
+ "sink".en.past_tense.should == 'sank'
1562
+ end
1563
+
1564
+ it "conjugates 'sit' as 'sat'" do
1565
+ "sit".en.past_tense.should == 'sat'
1566
+ end
1567
+
1568
+ it "conjugates 'skywrite' as 'skywrote'" do
1569
+ "skywrite".en.past_tense.should == 'skywrote'
1570
+ end
1571
+
1572
+ it "conjugates 'slay' as 'slew'" do
1573
+ "slay".en.past_tense.should == 'slew'
1574
+ end
1575
+
1576
+ it "conjugates 'sleep' as 'slept'" do
1577
+ "sleep".en.past_tense.should == 'slept'
1578
+ end
1579
+
1580
+ it "conjugates 'slide' as 'slid'" do
1581
+ "slide".en.past_tense.should == 'slid'
1582
+ end
1583
+
1584
+ it "conjugates 'sling' as 'slung'" do
1585
+ "sling".en.past_tense.should == 'slung'
1586
+ end
1587
+
1588
+ it "conjugates 'slit' as 'slit'" do
1589
+ "slit".en.past_tense.should == 'slit'
1590
+ end
1591
+
1592
+ it "conjugates 'smite' as 'smote'" do
1593
+ "smite".en.past_tense.should == 'smote'
1594
+ end
1595
+
1596
+ it "conjugates 'speak' as 'spoke'" do
1597
+ "speak".en.past_tense.should == 'spoke'
1598
+ end
1599
+
1600
+ it "conjugates 'speed' as 'sped'" do
1601
+ "speed".en.past_tense.should == 'sped'
1602
+ end
1603
+
1604
+ it "conjugates 'spend' as 'spent'" do
1605
+ "spend".en.past_tense.should == 'spent'
1606
+ end
1607
+
1608
+ it "conjugates 'spin' as 'spun'" do
1609
+ "spin".en.past_tense.should == 'spun'
1610
+ end
1611
+
1612
+ it "conjugates 'spit' as 'spat'" do
1613
+ "spit".en.past_tense.should == 'spat'
1614
+ end
1615
+
1616
+ it "conjugates 'split' as 'split'" do
1617
+ "split".en.past_tense.should == 'split'
1618
+ end
1619
+
1620
+ it "conjugates 'spoon-feed' as 'spoon-fed'" do
1621
+ "spoon-feed".en.past_tense.should == 'spoon-fed'
1622
+ end
1623
+
1624
+ it "conjugates 'spoon-feed' in first person as 'spoon-fed'" do
1625
+ "spoon-feed".en.past_tense( :first_person ).should == 'spoon-fed'
1626
+ end
1627
+
1628
+ it "conjugates 'spoon-feed' in third person as 'spoon-fed'" do
1629
+ "spoon-feed".en.past_tense( :third_person ).should == 'spoon-fed'
1630
+ end
1631
+
1632
+ it "conjugates 'spoonfeed' as 'spoonfed'" do
1633
+ "spoonfeed".en.past_tense.should == 'spoonfed'
1634
+ end
1635
+
1636
+ it "conjugates 'spread' as 'spread'" do
1637
+ "spread".en.past_tense.should == 'spread'
1638
+ end
1639
+
1640
+ it "conjugates 'spring' as 'sprang'" do
1641
+ "spring".en.past_tense.should == 'sprang'
1642
+ end
1643
+
1644
+ it "conjugates 'stall-feed' as 'stall-fed'" do
1645
+ "stall-feed".en.past_tense.should == 'stall-fed'
1646
+ end
1647
+
1648
+ it "conjugates 'stall-feed' in first person as 'stall-fed'" do
1649
+ "stall-feed".en.past_tense( :first_person ).should == 'stall-fed'
1650
+ end
1651
+
1652
+ it "conjugates 'stall-feed' in third person as 'stall-fed'" do
1653
+ "stall-feed".en.past_tense( :third_person ).should == 'stall-fed'
1654
+ end
1655
+
1656
+ it "conjugates 'stallfeed' as 'stallfed'" do
1657
+ "stallfeed".en.past_tense.should == 'stallfed'
1658
+ end
1659
+
1660
+ it "conjugates 'stand' as 'stood'" do
1661
+ "stand".en.past_tense.should == 'stood'
1662
+ end
1663
+
1664
+ it "conjugates 'steal' as 'stole'" do
1665
+ "steal".en.past_tense.should == 'stole'
1666
+ end
1667
+
1668
+ it "conjugates 'step-up' as 'stepped-up'" do
1669
+ "step-up".en.past_tense.should == 'stepped-up'
1670
+ end
1671
+
1672
+ it "conjugates 'step-up' in first person as 'stepped-up'" do
1673
+ "step-up".en.past_tense( :first_person ).should == 'stepped-up'
1674
+ end
1675
+
1676
+ it "conjugates 'step-up' in third person as 'stepped-up'" do
1677
+ "step-up".en.past_tense( :third_person ).should == 'stepped-up'
1678
+ end
1679
+
1680
+ it "conjugates 'stepup' as 'steppedup'" do
1681
+ "stepup".en.past_tense.should == 'steppedup'
1682
+ end
1683
+
1684
+ it "conjugates 'stick' as 'stuck'" do
1685
+ "stick".en.past_tense.should == 'stuck'
1686
+ end
1687
+
1688
+ it "conjugates 'sting' as 'stung'" do
1689
+ "sting".en.past_tense.should == 'stung'
1690
+ end
1691
+
1692
+ it "conjugates 'stink' as 'stank'" do
1693
+ "stink".en.past_tense.should == 'stank'
1694
+ end
1695
+
1696
+ it "conjugates 'stride' as 'strode'" do
1697
+ "stride".en.past_tense.should == 'strode'
1698
+ end
1699
+
1700
+ it "conjugates 'strike' as 'struck'" do
1701
+ "strike".en.past_tense.should == 'struck'
1702
+ end
1703
+
1704
+ it "conjugates 'string' as 'strung'" do
1705
+ "string".en.past_tense.should == 'strung'
1706
+ end
1707
+
1708
+ it "conjugates 'strive' as 'strove'" do
1709
+ "strive".en.past_tense.should == 'strove'
1710
+ end
1711
+
1712
+ it "conjugates 'sub-let' as 'sub-let'" do
1713
+ "sub-let".en.past_tense.should == 'sub-let'
1714
+ end
1715
+
1716
+ it "conjugates 'sub-let' in first person as 'sub-let'" do
1717
+ "sub-let".en.past_tense( :first_person ).should == 'sub-let'
1718
+ end
1719
+
1720
+ it "conjugates 'sub-let' in third person as 'sub-let'" do
1721
+ "sub-let".en.past_tense( :third_person ).should == 'sub-let'
1722
+ end
1723
+
1724
+ it "conjugates 'sublet' as 'sublet'" do
1725
+ "sublet".en.past_tense.should == 'sublet'
1726
+ end
1727
+
1728
+ it "conjugates 'swear' as 'swore'" do
1729
+ "swear".en.past_tense.should == 'swore'
1730
+ end
1731
+
1732
+ it "conjugates 'sweep' as 'swept'" do
1733
+ "sweep".en.past_tense.should == 'swept'
1734
+ end
1735
+
1736
+ it "conjugates 'swell' as 'swelled'" do
1737
+ "swell".en.past_tense.should == 'swelled'
1738
+ end
1739
+
1740
+ it "conjugates 'swim' as 'swam'" do
1741
+ "swim".en.past_tense.should == 'swam'
1742
+ end
1743
+
1744
+ it "conjugates 'swing' as 'swung'" do
1745
+ "swing".en.past_tense.should == 'swung'
1746
+ end
1747
+
1748
+ it "conjugates 'take' as 'took'" do
1749
+ "take".en.past_tense.should == 'took'
1750
+ end
1751
+
1752
+ it "conjugates 'teach' as 'taught'" do
1753
+ "teach".en.past_tense.should == 'taught'
1754
+ end
1755
+
1756
+ it "conjugates 'tear' as 'tore'" do
1757
+ "tear".en.past_tense.should == 'tore'
1758
+ end
1759
+
1760
+ it "conjugates 'telecast' as 'telecast'" do
1761
+ "telecast".en.past_tense.should == 'telecast'
1762
+ end
1763
+
1764
+ it "conjugates 'tell' as 'told'" do
1765
+ "tell".en.past_tense.should == 'told'
1766
+ end
1767
+
1768
+ it "conjugates 'test-drive' as 'test-drove'" do
1769
+ "test-drive".en.past_tense.should == 'test-drove'
1770
+ end
1771
+
1772
+ it "conjugates 'test-drive' in first person as 'test-drove'" do
1773
+ "test-drive".en.past_tense( :first_person ).should == 'test-drove'
1774
+ end
1775
+
1776
+ it "conjugates 'test-drive' in third person as 'test-drove'" do
1777
+ "test-drive".en.past_tense( :third_person ).should == 'test-drove'
1778
+ end
1779
+
1780
+ it "conjugates 'test-fly' as 'test-flew'" do
1781
+ "test-fly".en.past_tense.should == 'test-flew'
1782
+ end
1783
+
1784
+ it "conjugates 'test-fly' in first person as 'test-flew'" do
1785
+ "test-fly".en.past_tense( :first_person ).should == 'test-flew'
1786
+ end
1787
+
1788
+ it "conjugates 'test-fly' in third person as 'test-flew'" do
1789
+ "test-fly".en.past_tense( :third_person ).should == 'test-flew'
1790
+ end
1791
+
1792
+ it "conjugates 'testdrive' as 'testdrove'" do
1793
+ "testdrive".en.past_tense.should == 'testdrove'
1794
+ end
1795
+
1796
+ it "conjugates 'testfly' as 'testflew'" do
1797
+ "testfly".en.past_tense.should == 'testflew'
1798
+ end
1799
+
1800
+ it "conjugates 'think' as 'thought'" do
1801
+ "think".en.past_tense.should == 'thought'
1802
+ end
1803
+
1804
+ it "conjugates 'thring' as 'throng'" do
1805
+ "thring".en.past_tense.should == 'throng'
1806
+ end
1807
+
1808
+ it "conjugates 'throw' as 'threw'" do
1809
+ "throw".en.past_tense.should == 'threw'
1810
+ end
1811
+
1812
+ it "conjugates 'thrust' as 'thrust'" do
1813
+ "thrust".en.past_tense.should == 'thrust'
1814
+ end
1815
+
1816
+ it "conjugates 'trail-off' as 'trailed-off'" do
1817
+ "trail-off".en.past_tense.should == 'trailed-off'
1818
+ end
1819
+
1820
+ it "conjugates 'trail-off' in first person as 'trailed-off'" do
1821
+ "trail-off".en.past_tense( :first_person ).should == 'trailed-off'
1822
+ end
1823
+
1824
+ it "conjugates 'trail-off' in third person as 'trailed-off'" do
1825
+ "trail-off".en.past_tense( :third_person ).should == 'trailed-off'
1826
+ end
1827
+
1828
+ it "conjugates 'tread' as 'trod'" do
1829
+ "tread".en.past_tense.should == 'trod'
1830
+ end
1831
+
1832
+ it "conjugates 'troubleshoot' as 'troubleshot'" do
1833
+ "troubleshoot".en.past_tense.should == 'troubleshot'
1834
+ end
1835
+
1836
+ it "conjugates 'typecast' as 'typecast'" do
1837
+ "typecast".en.past_tense.should == 'typecast'
1838
+ end
1839
+
1840
+ it "conjugates 'typewrite' as 'typewrote'" do
1841
+ "typewrite".en.past_tense.should == 'typewrote'
1842
+ end
1843
+
1844
+ it "conjugates 'under-write' as 'under-wrote'" do
1845
+ "under-write".en.past_tense.should == 'under-wrote'
1846
+ end
1847
+
1848
+ it "conjugates 'under-write' in first person as 'under-wrote'" do
1849
+ "under-write".en.past_tense( :first_person ).should == 'under-wrote'
1850
+ end
1851
+
1852
+ it "conjugates 'under-write' in third person as 'under-wrote'" do
1853
+ "under-write".en.past_tense( :third_person ).should == 'under-wrote'
1854
+ end
1855
+
1856
+ it "conjugates 'underbid' as 'underbid'" do
1857
+ "underbid".en.past_tense.should == 'underbid'
1858
+ end
1859
+
1860
+ it "conjugates 'underbuy' as 'underbought'" do
1861
+ "underbuy".en.past_tense.should == 'underbought'
1862
+ end
1863
+
1864
+ it "conjugates 'undercut' as 'undercut'" do
1865
+ "undercut".en.past_tense.should == 'undercut'
1866
+ end
1867
+
1868
+ it "conjugates 'underfeed' as 'underfed'" do
1869
+ "underfeed".en.past_tense.should == 'underfed'
1870
+ end
1871
+
1872
+ it "conjugates 'undergo' as 'underwent'" do
1873
+ "undergo".en.past_tense.should == 'underwent'
1874
+ end
1875
+
1876
+ it "conjugates 'underrun' as 'underran'" do
1877
+ "underrun".en.past_tense.should == 'underran'
1878
+ end
1879
+
1880
+ it "conjugates 'undersell' as 'undersold'" do
1881
+ "undersell".en.past_tense.should == 'undersold'
1882
+ end
1883
+
1884
+ it "conjugates 'undershoot' as 'undershot'" do
1885
+ "undershoot".en.past_tense.should == 'undershot'
1886
+ end
1887
+
1888
+ it "conjugates 'underspend' as 'underspent'" do
1889
+ "underspend".en.past_tense.should == 'underspent'
1890
+ end
1891
+
1892
+ it "conjugates 'understand' as 'understood'" do
1893
+ "understand".en.past_tense.should == 'understood'
1894
+ end
1895
+
1896
+ it "conjugates 'undertake' as 'undertook'" do
1897
+ "undertake".en.past_tense.should == 'undertook'
1898
+ end
1899
+
1900
+ it "conjugates 'underthrust' as 'underthrust'" do
1901
+ "underthrust".en.past_tense.should == 'underthrust'
1902
+ end
1903
+
1904
+ it "conjugates 'underwrite' as 'underwrote'" do
1905
+ "underwrite".en.past_tense.should == 'underwrote'
1906
+ end
1907
+
1908
+ it "conjugates 'undo' as 'undid'" do
1909
+ "undo".en.past_tense.should == 'undid'
1910
+ end
1911
+
1912
+ it "conjugates 'undraw' as 'undrew'" do
1913
+ "undraw".en.past_tense.should == 'undrew'
1914
+ end
1915
+
1916
+ it "conjugates 'unfreeze' as 'unfroze'" do
1917
+ "unfreeze".en.past_tense.should == 'unfroze'
1918
+ end
1919
+
1920
+ it "conjugates 'unhang' as 'unhung'" do
1921
+ "unhang".en.past_tense.should == 'unhung'
1922
+ end
1923
+
1924
+ it "conjugates 'unhide' as 'unhid'" do
1925
+ "unhide".en.past_tense.should == 'unhid'
1926
+ end
1927
+
1928
+ it "conjugates 'unhold' as 'unheld'" do
1929
+ "unhold".en.past_tense.should == 'unheld'
1930
+ end
1931
+
1932
+ it "conjugates 'unknit' as 'unknitted'" do
1933
+ "unknit".en.past_tense.should == 'unknitted'
1934
+ end
1935
+
1936
+ it "conjugates 'unlay' as 'unlaid'" do
1937
+ "unlay".en.past_tense.should == 'unlaid'
1938
+ end
1939
+
1940
+ it "conjugates 'unmake' as 'unmade'" do
1941
+ "unmake".en.past_tense.should == 'unmade'
1942
+ end
1943
+
1944
+ it "conjugates 'unsay' as 'unsaid'" do
1945
+ "unsay".en.past_tense.should == 'unsaid'
1946
+ end
1947
+
1948
+ it "conjugates 'unsew' as 'unsewed'" do
1949
+ "unsew".en.past_tense.should == 'unsewed'
1950
+ end
1951
+
1952
+ it "conjugates 'unsling' as 'unslung'" do
1953
+ "unsling".en.past_tense.should == 'unslung'
1954
+ end
1955
+
1956
+ it "conjugates 'unspin' as 'unspun'" do
1957
+ "unspin".en.past_tense.should == 'unspun'
1958
+ end
1959
+
1960
+ it "conjugates 'unstick' as 'unstuck'" do
1961
+ "unstick".en.past_tense.should == 'unstuck'
1962
+ end
1963
+
1964
+ it "conjugates 'unstring' as 'unstrung'" do
1965
+ "unstring".en.past_tense.should == 'unstrung'
1966
+ end
1967
+
1968
+ it "conjugates 'unswear' as 'unswore'" do
1969
+ "unswear".en.past_tense.should == 'unswore'
1970
+ end
1971
+
1972
+ it "conjugates 'unteach' as 'untaught'" do
1973
+ "unteach".en.past_tense.should == 'untaught'
1974
+ end
1975
+
1976
+ it "conjugates 'unthink' as 'unthought'" do
1977
+ "unthink".en.past_tense.should == 'unthought'
1978
+ end
1979
+
1980
+ it "conjugates 'unweave' as 'unwove'" do
1981
+ "unweave".en.past_tense.should == 'unwove'
1982
+ end
1983
+
1984
+ it "conjugates 'unwind' as 'unwound'" do
1985
+ "unwind".en.past_tense.should == 'unwound'
1986
+ end
1987
+
1988
+ it "conjugates 'unwrite' as 'unwrote'" do
1989
+ "unwrite".en.past_tense.should == 'unwrote'
1990
+ end
1991
+
1992
+ it "conjugates 'uphold' as 'upheld'" do
1993
+ "uphold".en.past_tense.should == 'upheld'
1994
+ end
1995
+
1996
+ it "conjugates 'upset' as 'upset'" do
1997
+ "upset".en.past_tense.should == 'upset'
1998
+ end
1999
+
2000
+ it "conjugates 'use up' as 'used up'" do
2001
+ pending "figuring out how this is supposed to work" do
2002
+ "use up".en.past_tense.should == 'used up'
2003
+ end
2004
+ end
2005
+
2006
+ it "conjugates 'use up' in first person as 'used up'" do
2007
+ pending "figuring out how this is supposed to work" do
2008
+ "use up".en.past_tense( :first_person ).should == 'used up'
2009
+ end
2010
+ end
2011
+
2012
+ it "conjugates 'use up' in third person as 'used up'" do
2013
+ pending "figuring out how this is supposed to work" do
2014
+ "use up".en.past_tense( :third_person ).should == 'used up'
2015
+ end
2016
+ end
2017
+
2018
+ it "conjugates 'wake' as 'woke'" do
2019
+ "wake".en.past_tense.should == 'woke'
2020
+ end
2021
+
2022
+ it "conjugates 'waylay' as 'waylaid'" do
2023
+ "waylay".en.past_tense.should == 'waylaid'
2024
+ end
2025
+
2026
+ it "conjugates 'wear' as 'wore'" do
2027
+ "wear".en.past_tense.should == 'wore'
2028
+ end
2029
+
2030
+ it "conjugates 'weave' as 'wove'" do
2031
+ "weave".en.past_tense.should == 'wove'
2032
+ end
2033
+
2034
+ it "conjugates 'wed' as 'wed'" do
2035
+ "wed".en.past_tense.should == 'wed'
2036
+ end
2037
+
2038
+ it "conjugates 'weep' as 'wept'" do
2039
+ "weep".en.past_tense.should == 'wept'
2040
+ end
2041
+
2042
+ it "conjugates 'welcome' as 'welcomed'" do
2043
+ "welcome".en.past_tense.should == 'welcomed'
2044
+ end
2045
+
2046
+ it "conjugates 'wet' as 'wet'" do
2047
+ "wet".en.past_tense.should == 'wet'
2048
+ end
2049
+
2050
+ it "conjugates 'win' as 'won'" do
2051
+ "win".en.past_tense.should == 'won'
2052
+ end
2053
+
2054
+ it "conjugates 'wind' as 'wound'" do
2055
+ "wind".en.past_tense.should == 'wound'
2056
+ end
2057
+
2058
+ it "conjugates 'withdraw' as 'withdrew'" do
2059
+ "withdraw".en.past_tense.should == 'withdrew'
2060
+ end
2061
+
2062
+ it "conjugates 'withhold' as 'withheld'" do
2063
+ "withhold".en.past_tense.should == 'withheld'
2064
+ end
2065
+
2066
+ it "conjugates 'withstand' as 'withstood'" do
2067
+ "withstand".en.past_tense.should == 'withstood'
2068
+ end
2069
+
2070
+ it "conjugates 'wring' as 'wrung'" do
2071
+ "wring".en.past_tense.should == 'wrung'
2072
+ end
2073
+
2074
+ it "conjugates 'write' as 'wrote'" do
2075
+ "write".en.past_tense.should == 'wrote'
2076
+ end
2077
+
2078
+ it "conjugates 'wrought' as 'wrought'" do
2079
+ "wrought".en.past_tense.should == 'wrought'
2080
+ end
2081
+
2082
+ end
2083
+