Module:ybi-IPA/testcases

From Wiktionary, the free dictionary
Jump to navigation Jump to search

All tests passed. (refresh)

TextExpectedActualComments
test_phonetic:
Passedलेॽआप्mê (le'āpmê)[leʔapmɛ][leʔapmɛ]

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

local function tag_IPA(IPA)
		if phonetic then
			IPA = '/' .. IPA .. '/'
		else
			IPA = '[' .. IPA .. ']'
		end
	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, "standard")),
		tag_IPA(expected),
		{ comment = comment }
	)
end

function tests:test_phonetic()
	examples = {
{ "लेॽआप्mê", "leʔapmɛ" },
	}
tests:iterate(examples, "check_output")

end

return tests