Module:cr-translit/testcases

Hello, you have come here looking for the meaning of the word Module:cr-translit/testcases. In DICTIOUS you will not only get to know all the dictionary meanings for the word Module:cr-translit/testcases, but we will also tell you about its etymology, its characteristics and you will know how to say Module:cr-translit/testcases in singular and plural. Everything you need to know about the word Module:cr-translit/testcases you have here. The definition of the word Module:cr-translit/testcases will help you to be more precise and correct when speaking or writing your texts. Knowing the definition ofModule:cr-translit/testcases, as well as those of other words, enriches your vocabulary and provides you with more and better linguistic resources.

This is the unit-testing module for Module:cr-translit.


local export = {}

local result = ""

local function add(text)
	result = result .. "* ]: " .. require("Module:cr-translit").tr(text, "cr", "Cans") .. "\n"
end

local function dda(text)
	result = result .. "* ]: " .. require("Module:cr-translit").transcribe(text) .. "\n"
end

function export.show()
	add("ᐁᔨᐦᑵᐤ")
	add("ᐊᐱᑕᐘᐣ")
	add("ᐊᑎᒼ")
	add("ᐊᓄᑭᐃᑶᑭᑲ")
	add("ᐊᔦᒥᐅᑭᔨᑲ")
	add("ᐋᒨ")
	add("ᐧᐋᐸᔅᒄ")
	add("ᐱᔔ")
	add("ᐴᔒ")
	add("ᐸᔉᐙᐎᒧᐢᑐᐢ")
	add("ᐸᔦᔱᑲᓂᑭᔨᑲ")
	add("ᑭᒋᐊᐱᑕᐘᐣ")
	add("ᑭᒋᐊᓄᑭᐃᑶᑭᑲ")
	add("ᑭᒧᓭᐤ")
	add("ᑭᓀᐱᐠ")
	add("ᑳᐦᑳᒎ")
	add("ᒥᐢᑕᑎᒼ")
	add("ᒥᓂᔥᑎᒄ")
	add("ᒨᐦᑯᒫᓐ")
	add("ᒪᑎᓇᐅᑶᔨᑲ")
	add("ᒪᔉᐗ")
	add("ᒪᕁᐁᓰᐢ")
	add("ᓂᔅᒃ")
	add("ᓂᔭ")
	add("ᓃᐲᔾ")
	add("ᓇᑭ")
	add("ᓰᓰᑉ")
	dda("aamoo")
	dda("kakwa")
	dda("kisiskāciwani-sīpiy")
	dda("makusue")
	dda("mikisiw")
	dda("miskan")
	dda("naki")
	dda("peepee")
	dda("peepee tsoo")
	dda("sawan")
	dda("sīpiy")
	dda("wikowin")
	dda("êyihkwêw")
	return result
end

return export