exercism/elixir/pig-latin/pig_latin_test.exs

146 lines
3.8 KiB
Elixir

if !System.get_env("EXERCISM_TEST_EXAMPLES") do
Code.load_file("pig_latin.exs", __DIR__)
end
ExUnit.start()
ExUnit.configure(exclude: :pending, trace: true)
defmodule PigLatinTest do
use ExUnit.Case
describe "ay is added to words that start with vowels" do
# @tag :pending
test "word beginning with a" do
assert PigLatin.translate("apple") == "appleay"
end
# @tag :pending
test "word beginning with e" do
assert PigLatin.translate("ear") == "earay"
end
# @tag :pending
test "word beginning with i" do
assert PigLatin.translate("igloo") == "iglooay"
end
# @tag :pending
test "word beginning with o" do
assert PigLatin.translate("object") == "objectay"
end
# @tag :pending
test "word beginning with u" do
assert PigLatin.translate("under") == "underay"
end
# @tag :pending
test "word beginning with a vowel and followed by a qu" do
assert PigLatin.translate("equal") == "equalay"
end
end
describe "first consonant letters and ay are moved to the end of words that start with consonants" do
# @tag :pending
test "word beginning with p" do
assert PigLatin.translate("pig") == "igpay"
end
# @tag :pending
test "word beginning with k" do
assert PigLatin.translate("koala") == "oalakay"
end
# @tag :pending
test "word beginning with y" do
assert PigLatin.translate("yellow") == "ellowyay"
end
# @tag :pending
test "word beginning with x" do
assert PigLatin.translate("xenon") == "enonxay"
end
# @tag :pending
test "word beginning with q without a following u" do
assert PigLatin.translate("qat") == "atqay"
end
# @tag :pending
test "word beginning with two consonants" do
assert PigLatin.translate("pleasure") == "easureplay"
end
# @tag :pending
test "word beginning with three consonants" do
assert PigLatin.translate("stringify") == "ingifystray"
end
# @tag :pending
test "word beginning with a serie of consonants : aliens speak Pig Latin too" do
assert PigLatin.translate("zkrrkrkrkrzzzkewk") == "ewkzkrrkrkrkrzzzkay"
end
end
describe "consecutive consonants are treated like a single consonant" do
# @tag :pending
test "word beginning with ch" do
assert PigLatin.translate("chair") == "airchay"
end
# @tag :pending
test "word beginning with qu" do
assert PigLatin.translate("queen") == "eenquay"
end
# @tag :pending
test "word beginning with qu and a preceding consonant" do
assert PigLatin.translate("square") == "aresquay"
end
# @tag :pending
test "word beginning with th" do
assert PigLatin.translate("therapy") == "erapythay"
end
# @tag :pending
test "word beginning with thr" do
assert PigLatin.translate("thrush") == "ushthray"
end
# @tag :pending
test "word beginning with sch" do
assert PigLatin.translate("school") == "oolschay"
end
end
describe "'x' and 'y', when followed by a consonant, are treated like a vowel" do
# @tag :pending
test "word beginning with y, followed by a consonant" do
assert PigLatin.translate("yttria") == "yttriaay"
end
# @tag :pending
test "word beginning with y, followed by another consonant" do
assert PigLatin.translate("yddria") == "yddriaay"
end
# @tag :pending
test "word beginning with xr" do
assert PigLatin.translate("xray") == "xrayay"
end
# @tag :pending
test "word beginning with xb" do
assert PigLatin.translate("xbot") == "xbotay"
end
end
describe "phrases are translated" do
# @tag :pending
test "a whole phrase" do
assert PigLatin.translate("quick fast run") == "ickquay astfay unray"
end
end
end