Module:mai-Tirh-translit/testcases

Hello, you have come here looking for the meaning of the word Module:mai-Tirh-translit/testcases. In DICTIOUS you will not only get to know all the dictionary meanings for the word Module:mai-Tirh-translit/testcases, but we will also tell you about its etymology, its characteristics and you will know how to say Module:mai-Tirh-translit/testcases in singular and plural. Everything you need to know about the word Module:mai-Tirh-translit/testcases you have here. The definition of the word Module:mai-Tirh-translit/testcases will help you to be more precise and correct when speaking or writing your texts. Knowing the definition ofModule:mai-Tirh-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:mai-Tirh-translit.

2 of 3 tests failed. (refresh)

TextExpectedActualDiffers atComments
test_translit:
Passed𑒂𑒨𑒺āyeāye
Failed𑒑𑒰𑒖𑒩gājargājara6
Failed𑒏𑒩𑒢𑒰karnākaranā4

local tests = require("Module:UnitTests")
local m_translit = require("Module:mai-Tirh-translit")

local sc = require("Module:scripts").getByCode("Tirh")
local lang = require("Module:languages").getByCode("mai")

function link(term)
    return require("Module:links").full_link {term = term, lang = lang, tr = "-", sc = sc}
end

function tests:check_translit(term, expected)
    tests:equals(link(term), m_translit.tr(term), expected)
end

function tests:test_translit()
    local examples = {
        {"𑒂𑒨𑒺", "āye"}, 
        {"𑒑𑒰𑒖𑒩", "gājar"}, 
        {"𑒏𑒩𑒢𑒰", "karnā"},

    }

    tests:iterate(examples, "check_translit")
end

return tests