Module:lep-translit/testcases

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

All tests passed. (refresh)

TextExpectedActualDiffers at
test_translit_lepcha:
Passedᰕᰧmimi
Passedᰈᰬᰲjerjer
Passedᰎᰪᰰᰈᰬᰵpunjengpunjeng

-- Unit tests for ]. Refresh page to run tests.
local tests = require('Module:UnitTests')
local lep_translit = require('Module:lep-translit')

function tests:do_test_translit(lepc, roman, xlit)
	self:equals('<span class="Lepc" lang="lep">]</span>', lep_translit.tr(lepc, 'lep', 'Lepc'), roman)
end

function tests:test_translit_lepcha()
	self:do_test_translit('ᰕᰧ', 'mi')
	self:do_test_translit('ᰈᰬᰲ', 'jer')
	self:do_test_translit('ᰎᰪᰰᰈᰬᰵ', 'punjeng')
end
 
return tests