File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 9
9
end
10
10
11
11
it "should translate a word beginning with a vowel" do
12
- pending
13
12
s = translate ( "apple" )
14
13
s . should == "appleay"
15
14
end
16
15
17
16
it "should translate a two consonent word: stupid" do
18
- pending
19
17
s = translate ( "stupid" )
20
18
s . should == "upidstay"
21
19
end
22
20
23
21
it "should translate two words: eat pie" do
24
- pending
25
22
s = translate ( "eat pie" )
26
23
s . should == "eatay iepay"
27
24
end
28
25
29
26
it "should translate multiple words: the quick brown fox" do
30
- pending
31
27
s = translate ( "the quick brown fox" )
32
28
s . should == "ethay ickquay ownbray oxfay"
33
29
end
34
30
31
+ it "should not translate 'tu' as 'qu' " do
32
+ s = translate ( "the quick turn" )
33
+ s . should == "ethay ickquay urntay"
34
+ end
35
+
35
36
end
You can’t perform that action at this time.
0 commit comments