Module:xsr-IPA/testcases

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

All tests passed. (refresh)

TextExpectedActualComments
test_phonetic:
Passedख्योरो (ख्योरो)[cʰo.ɾo][cʰo.ɾo]

local tests = require("Module:UnitTests")
local m_IPA = require("Module:xsr-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 = {

        { "ख्योरो", "cʰo.ɾo" },
	}
tests:iterate(examples, "check_output")

end

return tests