Module:User:Sinonquoi/ta-IPA/testcases

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

This is a private module sandbox of Sinonquoi, for their own experimentation. Items in this module may be added and removed at Sinonquoi's discretion; do not rely on this module's stability.


local tests = require("Module:UnitTests")
local m_IPA = require("Module:hi-IPA")

local function tag_IPA(IPA)
	return '<span class="IPA">' .. IPA .. '</span>'
end

function tests:check_output(term, expected, comment)
	self:equals(
		m_IPA.link(term),
		tag_IPA(m_IPA.toIPA(term)),
		tag_IPA(expected),
		{ comment = comment }
	)
end

function tests:test_all()
	examples = {
		{ "கக்", "kak", "" },
		{ "ஒன்று", "ondru", "" },
	}
	
	tests:iterate(examples, "check_output")
end

return tests