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