Module:User:Lunabunn/ko-translit/testcases

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

1 of 2 tests failed. (refresh)

TextExpectedActual
test_okm:
Failed나랏말ᄊᆞ미 듀ᇰ귁에 달G아nalasmalssomi tywungkwuykey talganalasmalssomi tywungkwuykey talGa
Passed괴과ᄀᆄ괘궈궤ᄀᆑkwoykwakywakwaykwekweykywekwoykwakywakwaykwekweykywe

local tests = require("Module:UnitTests")
local m = require("Module:User:Lunabunn/ko-translit")

local okm_translit = require("Module:okm-translit")

function tests:okm(text)
	local actual = m.okm_yale(text)
	local expected = okm_translit.tr(text)

	return self:equals(text, actual, expected, {
		show_difference = true,
	})
end

function tests:test_okm()
	self:okm("나랏말ᄊᆞ미 듀ᇰ귁에 달G아")
	self:okm("괴과ᄀᆄ괘궈궤ᄀᆑ")
end

return tests