Skip to content

Commit 59e8419

Browse files
authored
Sync pig-latin tests (#423)
1 parent 56618ed commit 59e8419

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

exercises/practice/pig-latin/.meta/tests.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,9 @@ description = "first letter and ay are moved to the end of words that start with
3939
[bce94a7a-a94e-4e2b-80f4-b2bb02e40f71]
4040
description = "first letter and ay are moved to the end of words that start with consonants -> word beginning with q without a following u"
4141

42+
[e59dbbe8-ccee-4619-a8e9-ce017489bfc0]
43+
description = "first letter and ay are moved to the end of words that start with consonants -> word beginning with consonant and vowel containing qu"
44+
4245
[c01e049a-e3e2-451c-bf8e-e2abb7e438b8]
4346
description = "some letter clusters are treated like a single consonant -> word beginning with ch"
4447

exercises/practice/pig-latin/pig-latin-test.rkt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@
4040
(test-equal? "word beginning with q without a following u"
4141
(translate "qat") "atqay")
4242

43+
(test-equal? "word beginning with consonant and vowel containing qu"
44+
(translate "liquid") "iquidlay")
45+
4346
(test-equal? "word beginning with ch"
4447
(translate "chair") "airchay")
4548

0 commit comments

Comments
 (0)