tracks/scala/exercises/pig-latin/src/test/scala/PigLatinTest.scala in trackler-2.0.0.1 vs tracks/scala/exercises/pig-latin/src/test/scala/PigLatinTest.scala in trackler-2.0.0.2

- old
+ new

@@ -5,26 +5,30 @@ PigLatin.translate("apple") should be ("appleay") PigLatin.translate("ear") should be ("earay") } it should "translate beginning with single letter consonant clusters" in { + pending PigLatin.translate("pig") should be ("igpay") PigLatin.translate("koala") should be ("oalakay") PigLatin.translate("qat") should be ("atqay") } it should "translate beginning with multiple letter consonant clusters" in { + pending PigLatin.translate("chair") should be ("airchay") PigLatin.translate("therapy") should be ("erapythay") PigLatin.translate("thrush") should be ("ushthray") PigLatin.translate("school") should be ("oolschay") } it should "translate beginning with consonant clusters with qu" in { + pending PigLatin.translate("queen") should be ("eenquay") PigLatin.translate("square") should be ("aresquay") } it should "translate phrases" in { + pending PigLatin.translate("quick fast run") should be ("ickquay astfay unray") } }