Module:Beng-Deva-translit/testcases

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

All tests passed. (refresh)

TextExpectedActualDiffers at
test_translit:
Passedকরাकराकरा

local tests = require("Module:UnitTests")
local m_translit = require("Module:Beng-Deva-translit")

local sc = require("Module:scripts").getByCode("Beng")
local lang = require("Module:languages").getByCode("bn")

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 = {
        {"করা", "करा"},
    }

    tests:iterate(examples, "check_translit")
end
 
return tests